12 lines
189 B
JavaScript
12 lines
189 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
darkMode: 'media',
|
||
|
content: {
|
||
|
files: ["*.html", "./src/**/*.rs"],
|
||
|
},
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
plugins: []
|
||
|
}
|