Vue 3 + Vite + TypeScript scaffold with theme-aware CSS variables, router, LibraryView (PDF library grid), DocumentCard (per-doc status + actions), IngestProgress (polling progress bar), and ChatView stub for Task 9.
5 lines
132 B
TypeScript
5 lines
132 B
TypeScript
import { createApp } from "vue"
|
|
import App from "./App.vue"
|
|
import router from "./router"
|
|
|
|
createApp(App).use(router).mount("#app")
|