Skip to content

Commit

Permalink
Merge pull request #3137 from kiva/VUE-647_ui_tailwind_purge
Browse files Browse the repository at this point in the history
fix: Fix UI tailwind purging classes
  • Loading branch information
emuvente authored Aug 4, 2021
2 parents ee1c104 + fcf549f commit a15cc16
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 a15cc16

Please sign in to comment.