feat: initial commit

This commit is contained in:
Aarnav Tale
2024-03-17 19:34:54 -04:00
commit bb493f8e1b
9 changed files with 2528 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import adapter from "@sveltejs/adapter-auto";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: [vitePreprocess({})],
kit: {
adapter: adapter(),
paths: {
base: '/admin'
}
},
};
export default config;