scoreboard_video/svelte.config.js

15 lines
514 B
JavaScript
Raw Permalink Normal View History

2025-02-08 21:31:43 +01:00
// import adapter from '@sveltejs/adapter-auto';
import adapter from "svelte-adapter-bun";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter()
}
};
export default config;