From 41fc3cdbfcfbdee7dd7577d0d5af850537fcb547 Mon Sep 17 00:00:00 2001 From: whidix Date: Sat, 31 Dec 2022 17:46:31 +0100 Subject: [PATCH] fix Dockerfile --- Dockerfile | 2 +- svelte.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b1e5c9f..0db1314 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,4 @@ COPY . ./ RUN npm run build FROM nginx:latest -COPY --from=build /app/public /usr/share/nginx/html \ No newline at end of file +COPY --from=build /app/build /usr/share/nginx/html \ No newline at end of file diff --git a/svelte.config.js b/svelte.config.js index 0ab9e28..b31732f 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -15,7 +15,7 @@ const config = { ], kit: { - adapter: adapter({ out: 'public' }) + adapter: adapter() } };