mirror of
https://github.com/KevinMidboe/infra-map.git
synced 2025-10-29 17:40:28 +00:00
20 lines
455 B
JavaScript
20 lines
455 B
JavaScript
import adapter from '@sveltejs/adapter-node';
|
|
// import adapter from "svelte-adapter-bun";
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://svelte.dev/docs/kit/integrations
|
|
// for more information about preprocessors
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
adapter: adapter(),
|
|
experimental: {
|
|
remoteFunctions: true
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|