Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to load Tailwind config at: ./tailwind.config.js Cannot find module 'tailwindcss/plugin' #549

Closed
P4sca1 opened this issue Oct 19, 2022 · 1 comment · Fixed by #550
Labels
bug Something isn't working

Comments

@P4sca1
Copy link
Contributor

P4sca1 commented Oct 19, 2022

Starting from nuxtjs/tailwindcss 6, you can no longer use CJS syntax in tailwind.config.js. You have the following options:

  1. 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"
  2. Switch to using ESM syntax, and set VSCode setting "tailwindCSS.experimental.configFile": ".nuxt/tailwind.config.cjs"
  3. 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.

Sample config:

// Before:
module.exports = {
	theme: {
		extend: {},
	},
	plugins: [
		require('@tailwindcss/forms'),
		require('@tailwindcss/typography'),
	],
	darkMode: 'class',
}

// After (with TypeScript):
import type { Config } from 'tailwindcss'
import Forms from '@tailwindcss/forms'
import Typography from '@tailwindcss/typography'

export default <Partial<Config>>{
	theme: {
		extend: {},
	},
	plugins: [Forms(), Typography()],
	darkMode: 'class',
}
@P4sca1 P4sca1 added the bug Something isn't working label Oct 19, 2022
@P4sca1
Copy link
Contributor Author

P4sca1 commented Oct 19, 2022

This is a side-effect of #535. I suggest updating docs and adding a note in the changelog.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
1 participant