You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting from nuxtjs/tailwindcss 6, you can no longer use CJS syntax in tailwind.config.js. You have the following options:
Rename the config to tailwind.config.cjs, set tailwindcss.configPath to tailwind.config.cjs in module options and set VSCode setting "tailwindCSS.experimental.configFile": "tailwind.config.cjs"
Switch to using ESM syntax, and set VSCode setting "tailwindCSS.experimental.configFile": ".nuxt/tailwind.config.cjs"
Switch to TypeScript (nuxt.config.ts), and set VSCode setting "tailwindCSS.experimental.configFile": ".nuxt/tailwind.config.cjs".
I would personally recommend option 3 if you are using TypeScript and option 2 otherwise.
Starting from nuxtjs/tailwindcss 6, you can no longer use CJS syntax in tailwind.config.js. You have the following options:
tailwind.config.cjs
, settailwindcss.configPath
totailwind.config.cjs
in module options and set VSCode setting"tailwindCSS.experimental.configFile": "tailwind.config.cjs"
"tailwindCSS.experimental.configFile": ".nuxt/tailwind.config.cjs"
nuxt.config.ts
), and set VSCode setting"tailwindCSS.experimental.configFile": ".nuxt/tailwind.config.cjs"
.I would personally recommend option 3 if you are using TypeScript and option 2 otherwise.
Sample config:
The text was updated successfully, but these errors were encountered: