24 lines
507 B
JavaScript
24 lines
507 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: {
|
||
|
container: {
|
||
|
center: true
|
||
|
}
|
||
|
}
|
||
|
// purge: {
|
||
|
// enabled: process.env.NODE_ENV === 'production',
|
||
|
// content: [
|
||
|
// 'components/**/*.vue',
|
||
|
// 'layouts/**/*.vue',
|
||
|
// 'pages/**/*.vue',
|
||
|
// 'nuxt.config.js'
|
||
|
// ]
|
||
|
// },
|
||
|
// darkMode: false
|
||
|
}
|