mirror of
https://github.com/MirageNetwork/MirageServer.git
synced 2026-04-22 23:57:23 +08:00
53ced56990
Signed-off-by: Chenyang Gao <gps949@outlook.com>
25 lines
445 B
JavaScript
25 lines
445 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
},
|
|
extend: {},
|
|
},
|
|
daisyui: {
|
|
styled: true,
|
|
themes: false,
|
|
base: true,
|
|
utils: true,
|
|
logs: true,
|
|
rtl: false,
|
|
prefix: "",
|
|
darkTheme: "dark",
|
|
},
|
|
plugins: [require("@tailwindcss/typography"), require("daisyui")],
|
|
}
|