Initial commit

This commit is contained in:
2024-08-19 08:21:42 +00:00
commit f4d29aabbd
32 changed files with 2865 additions and 0 deletions

21
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,21 @@
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
import { join } from "node:path";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
resolve: {
alias: {
$lib: join(__dirname, "src/lib"),
$components: join(__dirname, "src/lib/components"),
$router: join(__dirname, "src/lib/router"),
$wails: join(__dirname, "wailsjs/go"),
},
},
build: {
target: "esnext"
},
});