refactor: massively simplify to svelte with web/ directory, prepare for backend

This commit is contained in:
2026-01-04 15:10:35 -06:00
parent af81d8e048
commit 07ea1c093e
89 changed files with 1180 additions and 9659 deletions
+19
View File
@@ -0,0 +1,19 @@
import adapter from "svelte-adapter-bun";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter({
out: "build",
precompress: false,
}),
alias: {
$components: "src/lib/components",
},
},
};
export default config;