egentrening/svelte.config.js

19 lines
460 B
JavaScript
Raw Normal View History

2025-09-02 23:13:01 +02:00
import adapter from '@sveltejs/adapter-node';
2025-09-02 15:16:54 +02:00
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
2025-09-03 00:05:58 +02:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
2025-09-02 15:16:54 +02:00
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: vitePreprocess(),
2025-09-02 22:51:17 +02:00
compilerOptions: {
experimental: { async: true }
},
kit: {
adapter: adapter(),
experimental: { remoteFunctions: true }
}
2025-09-02 15:16:54 +02:00
};
export default config;