Skip to content

Commit

Permalink
chore: update tailwind.config as purge is deprecated (#150)
Browse files Browse the repository at this point in the history
* chore: update tailwind.config as purge is deprecated

* chore: cleanup
  • Loading branch information
davidma415 authored Jul 13, 2023
1 parent 6f14c01 commit 3034225
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ module.exports = {
future: {
purgeLayersByDefault: true
},
purge: {
layers: ['utilities'],
content: [
'./src/**/*.js',
'./src/**/*.vue'
]
},
layers: ['utilities'],
content: [
'./src/**/*.js',
'./src/**/*.vue'
],
theme: {
extend: {
screens: {
Expand All @@ -21,6 +19,5 @@ module.exports = {
}
}
},
variants: {},
plugins: []
}

0 comments on commit 3034225

Please sign in to comment.