2020-03-24 09:00:39 +00:00
|
|
|
const path = require('path')
|
|
|
|
|
2018-11-08 09:37:38 +00:00
|
|
|
export default {
|
|
|
|
head: {
|
|
|
|
title: 'Nuxt Tailwind CSS + Purgecss',
|
|
|
|
meta: [
|
|
|
|
{ charset: 'utf-8' },
|
|
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
|
|
{
|
|
|
|
hid: 'description',
|
|
|
|
name: 'description',
|
2020-11-30 22:44:04 +00:00
|
|
|
content: 'A static site powered by Nuxt'
|
2018-11-08 09:37:38 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2020-03-24 09:00:39 +00:00
|
|
|
css: ['~/assets/css/tailwind.css'],
|
|
|
|
build: {
|
|
|
|
postcss: {
|
|
|
|
plugins: {
|
2020-07-30 14:45:49 +00:00
|
|
|
tailwindcss: path.join(__dirname, './tailwind.config.js')
|
2020-03-24 09:00:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-08 09:37:38 +00:00
|
|
|
}
|