1
0
Fork 0
esix-client/svelte.config.js

15 lines
359 B
JavaScript
Raw Normal View History

2024-02-17 01:29:25 +00:00
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
2024-03-17 01:46:07 +00:00
import adapter from "@sveltejs/adapter-static";
2024-02-17 01:29:25 +00:00
export default {
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
// for more information about preprocessors
2024-03-17 01:46:07 +00:00
preprocess: [vitePreprocess({})],
2024-02-17 01:29:25 +00:00
kit: {
2024-10-23 17:18:22 +00:00
adapter: adapter({
fallback: 'index.html'
}),
2024-03-17 01:46:07 +00:00
},
2024-02-17 01:29:25 +00:00
};