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
10 lines
237 B
JavaScript
10 lines
237 B
JavaScript
import App from "./App.svelte";
|
|
import "./app.css";
|
|
import { mount } from "svelte";
|
|
import "@unocss/reset/tailwind.css";
|
|
import "virtual:uno.css";
|
|
|
|
const app = mount(App, { target: document.getElementById("app") });
|
|
|
|
export default app;
|