mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "class",
|
|
important: true,
|
|
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
};
|