13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
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;
|