haveno-markets/svelte.config.js

13 lines
254 B
JavaScript
Raw Normal View History

2024-07-14 08:50:03 -06:00
import adapter from "svelte-adapter-bun";
2024-08-05 18:15:47 -06:00
import { sveltePreprocess } from "svelte-preprocess";
2024-07-14 08:50:03 -06:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter(),
},
2024-08-05 18:15:47 -06:00
preprocess: sveltePreprocess(),
2024-07-14 08:50:03 -06:00
};
export default config;