fbla26/svelte.config.js
DragonDuck24 4ea6549ac7
All checks were successful
ci / docker_image (push) Successful in 2m55s
ci / deploy (push) Successful in 51s
Lots of dev
2026-02-03 00:23:43 -06:00

22 lines
366 B
JavaScript

import adapter from '@sveltejs/adapter-node';
import { sveltePreprocess } from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: sveltePreprocess(),
kit: {
adapter: adapter(),
experimental: {
remoteFunctions: true
}
},
compilerOptions: {
experimental: {
async: true
}
}
};
export default config;