initial commit

This commit is contained in:
2025-06-25 00:23:37 +03:00
parent d63e39b3a8
commit c9a67204e3
21 changed files with 5240 additions and 0 deletions

12
svelte.config.js Normal file
View File

@@ -0,0 +1,12 @@
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
const config = {
preprocess: vitePreprocess(),
kit: { adapter: adapter() },
optimizeDeps: {
exclude: ['geolocation']
},
};
export default config;