2022-04-03 01:20:53 +02:00
|
|
|
/*
|
2022-04-03 01:20:54 +02:00
|
|
|
** TailwindCSS Configuration File
|
|
|
|
**
|
|
|
|
** Docs: https://tailwindcss.com/docs/configuration
|
|
|
|
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
|
|
|
|
*/
|
2022-04-03 01:20:53 +02:00
|
|
|
module.exports = {
|
|
|
|
theme: {
|
|
|
|
container: {
|
2022-04-03 01:20:54 +02:00
|
|
|
center: true,
|
|
|
|
},
|
|
|
|
},
|
2022-04-03 01:20:53 +02:00
|
|
|
// purge: {
|
|
|
|
// enabled: process.env.NODE_ENV === 'production',
|
|
|
|
// content: [
|
|
|
|
// 'components/**/*.vue',
|
|
|
|
// 'layouts/**/*.vue',
|
|
|
|
// 'pages/**/*.vue',
|
|
|
|
// 'nuxt.config.js'
|
|
|
|
// ]
|
|
|
|
// },
|
|
|
|
// darkMode: false
|
|
|
|
}
|