webvm/svelte.config.js

13 lines
289 B
JavaScript
Raw Normal View History

2024-10-10 14:17:36 +00:00
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
2024-09-28 07:28:52 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
2024-10-10 14:17:36 +00:00
adapter: adapter({fallback: 'index.html'})
},
preprocess: vitePreprocess()
2024-09-28 07:28:52 +00:00
};
export default config;