language-learning-app/frontend/svelte.config.js
wilson a8cd8d8060
Some checks are pending
/ test (push) Waiting to run
feat: [frontend] First implementation of the "Create new adventure"
form.
2026-05-03 22:39:03 +01:00

25 lines
458 B
JavaScript

import adapter from '@sveltejs/adapter-node';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter(),
experimental: {
remoteFunctions: true
},
alias: {
'@client': 'src/client/sdk.gen'
}
},
compilerOptions: {
experimental: {
async: true
}
},
vitePlugin: {
dynamicCompileOptions: ({ filename }) =>
filename.includes('node_modules') ? undefined : { runes: true }
}
};
export default config;