1
0
Fork 0
esix-client/svelte.config.js
2024-10-23 19:18:22 +02:00

14 lines
359 B
JavaScript

import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
import adapter from "@sveltejs/adapter-static";
export default {
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
// for more information about preprocessors
preprocess: [vitePreprocess({})],
kit: {
adapter: adapter({
fallback: 'index.html'
}),
},
};