diff --git a/bun.lockb b/bun.lockb index 6b78127..774dc0f 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 48043ae..7c80b80 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ "dependencies": { "@imagemagick/magick-wasm": "^0.0.31", "lucide-svelte": "^0.456.0", + "svelte-adapter-bun": "^0.5.2", "wasm-vips": "^0.0.11" } } diff --git a/svelte.config.js b/svelte.config.js index 1295460..62d7d91 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,5 +1,5 @@ -import adapter from '@sveltejs/adapter-auto'; -import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; +import adapter from "svelte-adapter-bun"; +import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"; /** @type {import('@sveltejs/kit').Config} */ const config = { @@ -11,8 +11,8 @@ const config = { // 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() - } + adapter: adapter(), + }, }; export default config;