w3ps1/svelte.config.js

13 lines
255 B
JavaScript
Raw Permalink Normal View History

2023-02-11 21:42:13 +01:00
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter()
},
2023-02-12 17:11:52 +01:00
preprocess: vitePreprocess()
2023-02-11 21:42:13 +01:00
};
export default config;