diff --git a/tailwind.config.js b/tailwind.config.js index 2e3655a..fb607f6 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,8 +1,11 @@ module.exports = { - purge: [ - 'public/index.html', - 'src/**/*.vue' - ], + purge: { + mode: 'layers', + content: [ + 'public/index.html', + 'src/**/*.vue' + ] + }, theme: { colors: { black: '#222', @@ -23,5 +26,8 @@ module.exports = { plugins: [], experimental: { applyComplexClasses: true + }, + future: { + purgeLayersByDefault: true } }