michalvankodev-site/svelte.config.js

14 lines
307 B
JavaScript
Raw Permalink Normal View History

2021-10-07 16:51:44 +02:00
import adapterStatic from '@sveltejs/adapter-static'
2023-01-17 20:57:28 +01:00
import { vitePreprocess } from '@sveltejs/kit/vite'
2021-10-07 16:51:44 +02:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
2023-01-17 20:57:28 +01:00
preprocess: vitePreprocess(),
2021-10-07 16:51:44 +02:00
kit: {
adapter: adapterStatic(),
2023-01-17 20:57:28 +01:00
// prerender: { default: true },
2021-10-07 16:51:44 +02:00
},
}
export default config