26 lines
619 B
JavaScript
26 lines
619 B
JavaScript
/*
|
|
** TailwindCSS Configuration File
|
|
**
|
|
** Docs: https://tailwindcss.com/docs/configuration
|
|
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
|
|
*/
|
|
module.exports = {
|
|
theme: {},
|
|
variants: {},
|
|
plugins: [],
|
|
purge: {
|
|
// Learn more on https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css
|
|
enabled: process.env.NODE_ENV === 'production',
|
|
content: [
|
|
'components/**/*.vue',
|
|
'layouts/**/*.vue',
|
|
'pages/**/*.vue',
|
|
'plugins/**/*.js',
|
|
'nuxt.config.js'
|
|
]
|
|
},
|
|
future: {
|
|
removeDeprecatedGapUtilities: true
|
|
}
|
|
}
|