1
0
Fork 0

fix: tailwind purge works now

This commit is contained in:
Ava Gaiety Wroten 2021-12-29 22:27:58 -06:00
parent 71b3fe5e2c
commit 7befcfd3c9
2 changed files with 17 additions and 15 deletions

View file

@ -1,3 +1,5 @@
import tailwindAspectRatio from '@tailwindcss/aspect-ratio'
export default {
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
@ -129,4 +131,19 @@ export default {
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {},
// Tailwind
tailwindcss: {
config: {
plugins: [tailwindAspectRatio],
},
theme: {
extend: {
colors: {
brandbright: '#ca4e8d',
branddark: '#83398c',
},
},
},
},
}

View file

@ -1,15 +0,0 @@
import tailwindAspectRatio from '@tailwindcss/aspect-ratio'
module.exports = {
config: {
plugins: [tailwindAspectRatio],
},
theme: {
extend: {
colors: {
brandbright: '#ca4e8d',
branddark: '#83398c',
},
},
},
}