mirror of
https://github.com/IoTManagerProject/IoTManagerWeb.git
synced 2026-03-26 23:12:34 +03:00
first version
This commit is contained in:
21
tailwind.config.js
Normal file
21
tailwind.config.js
Normal file
@@ -0,0 +1,21 @@
|
||||
// tailwind.config.js
|
||||
module.exports = {
|
||||
purge: {
|
||||
enabled: !process.env.ROLLUP_WATCH,
|
||||
content: ['./public/index.html', './src/**/*.svelte'],
|
||||
options: {
|
||||
defaultExtractor: content => [
|
||||
...(content.match(/[^<>"'`\s]*[^<>"'`\s:]/g) || []),
|
||||
...(content.match(/(?<=class:)[^=>\/\s]*/g) || []),
|
||||
],
|
||||
},
|
||||
},
|
||||
darkMode: false, // or 'media' or 'class'
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
variants: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user