fix install adapters

This commit is contained in:
Smile Rex
2025-07-20 17:16:54 +03:00
parent f2c033f0e9
commit 9220daf8eb
4 changed files with 221 additions and 108 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ FROM node:20-alpine
WORKDIR /app
COPY --from=build /app/.svelte-kit/output /app/build
COPY --from=build /app/build ./build
COPY --from=build /app/package.json ./package.json
RUN npm install --production
+218 -106
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -21,6 +21,7 @@
"vite": "^7.0.4"
},
"dependencies": {
"@sveltejs/adapter-node": "^5.2.13",
"dom-to-image": "^2.6.0",
"html2canvas": "^1.4.1"
}
+1 -1
View File
@@ -1,4 +1,4 @@
import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-node';
/** @type {import('@sveltejs/kit').Config} */
const config = {