2023-10-13 18:12:34 +03:00
|
|
|
import adapter from 'svelte-adapter-bun';
|
2023-04-21 22:35:25 +03:00
|
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2023-10-13 18:12:34 +03:00
|
|
|
preprocess: [vitePreprocess({})],
|
2023-04-21 22:35:25 +03:00
|
|
|
|
|
|
|
kit: {
|
|
|
|
adapter: adapter()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|