Skip to content

Commit

Permalink
fix(nuxtjs-base): possible fix for nuxt-modules/tailwindcss#359
Browse files Browse the repository at this point in the history
  • Loading branch information
kolessios committed Jul 1, 2021
1 parent 24c8aac commit b0f6525
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions workspaces/nuxtjs-base/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,12 @@ module.exports = {
purge: {
// https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css
content: [
'./components/**/*.{vue,js}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}'
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.ts',
'nuxt.config.js',
'nuxt.config.ts'
]
}
}

0 comments on commit b0f6525

Please sign in to comment.