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