Skip to content

Commit

Permalink
fix: Fix UI tailwind purging classes
Browse files Browse the repository at this point in the history
VUE-647
  • Loading branch information
Eddie Ferrer committed Aug 4, 2021
1 parent afcd5e6 commit fcf549f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ const kvConfig = require('@kiva/kv-components/tailwind.config.js');
module.exports = {
mode: 'jit',
presets: [kvConfig],
purge: [
'./node_modules/@kiva/kv-components/**/*.vue',
'./node_modules/@kiva/kv-components/utils/**/*.js',
'./server/**/*.html',
'./src/**/*.vue',
],
purge: {
content: [
'./node_modules/@kiva/kv-components/**/*.vue',
'./node_modules/@kiva/kv-components/utils/**/*.js',
'./server/**/*.html',
'./src/**/*.vue',
]
}
};

0 comments on commit fcf549f

Please sign in to comment.