fix: Switch to @sveltejs/adapter-node

This commit is contained in:
April Hall 2025-02-06 23:56:31 -05:00
parent b6ec0312d5
commit e46e6b51f4
Signed by: arithefirst
GPG Key ID: 4508A15C4DB91C5B
3 changed files with 2 additions and 2 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -16,7 +16,6 @@
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"autoprefixer": "^10.4.20",
@ -39,6 +38,7 @@
"vite": "^6.0.0"
},
"dependencies": {
"@sveltejs/adapter-node": "^5.2.12",
"@types/express": "^5.0.0",
"cassandra-driver": "^4.7.2",
"express": "^4.21.2",

View File

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