19 lines
278 B
JavaScript
19 lines
278 B
JavaScript
import adapter from '@sveltejs/adapter-node';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
adapter: adapter(),
|
|
experimental: {
|
|
remoteFunctions: true
|
|
}
|
|
},
|
|
compilerOptions: {
|
|
experimental: {
|
|
async: true
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|