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

13 lines
321 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-03-17 01:46:07 +00:00
adapter: adapter(),
},
2024-02-17 01:29:25 +00:00
};