diff --git a/Dockerfile b/Dockerfile index 970c948..9377b76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM oven/bun:1.1.38 +FROM oven/bun:1.2.23 WORKDIR /app diff --git a/bun.lockb b/bun.lockb index a215bb0..ba73377 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index b5b3b59..c829f74 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,6 @@ }, "devDependencies": { "@iconify/json": "^2.2.292", - "@sveltejs/adapter-static": "^3.0.9", "@sveltejs/kit": "^2.0.0", "@sveltejs/vite-plugin-svelte": "^4.0.0", "autoprefixer": "^10.4.20", @@ -23,6 +22,7 @@ "prettier": "^3.4.2", "prettier-plugin-svelte": "^3.3.2", "svelte": "^5.0.0", + "svelte-adapter-bun": "^1.0.1", "svelte-check": "^4.0.0", "tailwind-merge": "^2.6.0", "tailwind-variants": "^0.3.0", diff --git a/svelte.config.js b/svelte.config.js index 3f9309f..246acf3 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,4 +1,4 @@ -import adapter from "@sveltejs/adapter-static"; +import adapter from "svelte-adapter-bun"; import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"; /** @type {import('@sveltejs/kit').Config} */ @@ -12,11 +12,7 @@ const config = { // 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({ - pages: "build", - assets: "build", - fallback: undefined, - precompress: false, - strict: true, + out: "build", }), csrf: { checkOrigin: false,