auth.andert.me/svelte.config.js

23 lines
477 B
JavaScript
Raw Normal View History

2023-07-19 09:42:47 +00:00
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/kit/vite';
2023-07-19 09:42:47 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
// 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
};
export default config;