mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
21 lines
391 B
JavaScript
21 lines
391 B
JavaScript
|
const path = require('path')
|
||
|
|
||
|
module.exports = {
|
||
|
purge: {
|
||
|
enabled: true,
|
||
|
content: [
|
||
|
path.join(__dirname, './pages/**/*.vue'),
|
||
|
path.join(__dirname, './layouts/**/*.vue'),
|
||
|
path.join(__dirname, './components/**/*.vue')
|
||
|
],
|
||
|
options: {
|
||
|
whitelist: ['html', 'body', 'nuxt-progress']
|
||
|
}
|
||
|
},
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
variants: {},
|
||
|
plugins: []
|
||
|
}
|