mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
* build(pages): move html pages generator to vite plugin * refactor: remove all router related content * refactor: replace tailwindcss by unocss * refactor(app): upgrade app to Svelte 5 * build(pages): restore html pages generator on vite config * chore: run prettier * fix(ui): fix notification center slot render * chore: upgrade dependencies
12 lines
334 B
TypeScript
12 lines
334 B
TypeScript
import presetWind from "@unocss/preset-wind";
|
|
import { defineConfig } from "unocss";
|
|
import { presetTypography } from "unocss";
|
|
import presetIcons from "@unocss/preset-icons";
|
|
|
|
export default defineConfig({
|
|
content: {
|
|
filesystem: ["build/template/*.html"],
|
|
},
|
|
presets: [presetIcons(), presetWind(), presetTypography()],
|
|
});
|