haveno-markets/svelte.config.js

13 lines
240 B
JavaScript
Raw Normal View History

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