fix: tailwind purge works now
This commit is contained in:
parent
71b3fe5e2c
commit
7befcfd3c9
2 changed files with 17 additions and 15 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
import tailwindAspectRatio from '@tailwindcss/aspect-ratio'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
// Global page headers: https://go.nuxtjs.dev/config-head
|
// Global page headers: https://go.nuxtjs.dev/config-head
|
||||||
head: {
|
head: {
|
||||||
|
@ -129,4 +131,19 @@ export default {
|
||||||
|
|
||||||
// Build Configuration: https://go.nuxtjs.dev/config-build
|
// Build Configuration: https://go.nuxtjs.dev/config-build
|
||||||
build: {},
|
build: {},
|
||||||
|
|
||||||
|
// Tailwind
|
||||||
|
tailwindcss: {
|
||||||
|
config: {
|
||||||
|
plugins: [tailwindAspectRatio],
|
||||||
|
},
|
||||||
|
theme: {
|
||||||
|
extend: {
|
||||||
|
colors: {
|
||||||
|
brandbright: '#ca4e8d',
|
||||||
|
branddark: '#83398c',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
import tailwindAspectRatio from '@tailwindcss/aspect-ratio'
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
config: {
|
|
||||||
plugins: [tailwindAspectRatio],
|
|
||||||
},
|
|
||||||
theme: {
|
|
||||||
extend: {
|
|
||||||
colors: {
|
|
||||||
brandbright: '#ca4e8d',
|
|
||||||
branddark: '#83398c',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue