Initial Commit

This commit is contained in:
Xyroscar
2024-11-06 19:31:39 +05:30
commit 2e29a1cb82
74 changed files with 10837 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "vite";
import { sveltekit } from "@sveltejs/kit/vite";
export default defineConfig(async () => ({
plugins: [sveltekit()],
clearScreen: false,
server:{
port: 1420,
strictPort: true
},
envPrefix: ["VITE_", "TAURI_"],
}))