2026-05-09 11:24:17 +08:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
export default {
|
|
|
|
|
content: [
|
|
|
|
|
"./src/renderer/index.html",
|
2026-05-09 11:31:38 +08:00
|
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
2026-05-09 11:24:17 +08:00
|
|
|
],
|
|
|
|
|
theme: {
|
|
|
|
|
extend: {},
|
|
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
}
|