Files
hear-on-out/svelte.config.js
2025-12-29 14:02:51 +02:00

15 lines
268 B
JavaScript

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