musikspider/svelte.config.js

14 lines
254 B
JavaScript
Raw Normal View History

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 = {
preprocess: [vitePreprocess({})],
2023-04-21 22:35:25 +03:00
kit: {
adapter: adapter()
}
};
export default config;