🐞 fixed Vite/ Tailwind build

This commit is contained in:
2021-03-31 17:13:57 +02:00
parent cb5f48d913
commit 27b81d87ae
4 changed files with 16 additions and 15 deletions

View File

@@ -1,11 +1,11 @@
module.exports = {
purge: [],
darkMode: "media", // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}
purge: [ './index.html', './src/**/*.{vue,js,ts,jsx,tsx}' ],
darkMode: 'media', // or 'media' or 'class'
theme: {
extend: {}
},
variants: {
extend: {}
},
plugins: []
};