Skip to content

Commit b0f6525

Browse files
committed
fix(nuxtjs-base): possible fix for nuxt-modules/tailwindcss#359
1 parent 24c8aac commit b0f6525

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

workspaces/nuxtjs-base/tailwind.config.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,12 @@ module.exports = {
186186
purge: {
187187
// https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css
188188
content: [
189-
'./components/**/*.{vue,js}',
190-
'./layouts/**/*.vue',
191-
'./pages/**/*.vue',
192-
'./plugins/**/*.{js,ts}',
193-
'./nuxt.config.{js,ts}'
189+
'components/**/*.vue',
190+
'layouts/**/*.vue',
191+
'pages/**/*.vue',
192+
'plugins/**/*.ts',
193+
'nuxt.config.js',
194+
'nuxt.config.ts'
194195
]
195196
}
196197
}

0 commit comments

Comments
 (0)