2023-07-19 09:42:47 +00:00
|
|
|
import adapter from '@sveltejs/adapter-auto';
|
|
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
2023-07-29 13:09:21 +00:00
|
|
|
|
2023-07-19 09:42:47 +00:00
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2023-07-29 13:09:21 +00:00
|
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
|
|
// for more information about preprocessors
|
|
|
|
preprocess: vitePreprocess(),
|
|
|
|
|
|
|
|
kit: {
|
|
|
|
adapter: adapter(),
|
|
|
|
alias: {
|
|
|
|
$houdini: './$houdini',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ssr: {
|
|
|
|
// Other SSR options...
|
|
|
|
dynamicImportShim: false
|
|
|
|
},
|
2023-07-19 09:42:47 +00:00
|
|
|
};
|
2023-07-29 13:09:21 +00:00
|
|
|
|
|
|
|
export default config;
|