make vert CSR

no more SSR - svelte-adapter-bun unneeded
This commit is contained in:
JovannMC 2025-01-13 20:27:30 +03:00
parent 4bf1be16ea
commit 6b49d79a71
No known key found for this signature in database
3 changed files with 4 additions and 3 deletions

View File

@ -13,7 +13,7 @@
},
"devDependencies": {
"@poppanator/sveltekit-svg": "^5.0.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/eslint": "^9.6.0",
@ -47,7 +47,6 @@
"js-cookie": "^3.0.5",
"jsmediatags": "^3.9.7",
"lucide-svelte": "^0.456.0",
"svelte-adapter-bun": "^0.5.2",
"wasm-vips": "^0.0.11"
},
"patchedDependencies": {

View File

@ -28,3 +28,5 @@ export const load = ({ data }) => {
});
return data;
};
export const prerender = true;

View File

@ -1,4 +1,4 @@
import adapter from "@sveltejs/adapter-auto";
import adapter from "@sveltejs/adapter-static";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
/** @type {import('@sveltejs/kit').Config} */