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() } };