auth.andert.me/svelte.config.js

14 lines
327 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';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter()
},
2023-07-28 20:25:31 +00:00
ssr: {
// Other SSR options...
dynamicImportShim: false
},
preprocess: vitePreprocess(),
2023-07-19 09:42:47 +00:00
};
export default config;