From e9f967bed538ce7fc4855fab6233f123aad39d91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Jaro=C5=A1?= Date: Wed, 6 Jul 2022 18:31:17 +0200 Subject: [PATCH] FIX;Application return 404 after deploy --- docker/Dockerfile | 2 +- next.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 62061ef..5ebe286 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -23,4 +23,4 @@ EXPOSE 3000 ENV PORT 3000 -CMD ["node", "server.js"] \ No newline at end of file +CMD ["npm", "run", "start"] \ No newline at end of file diff --git a/next.config.js b/next.config.js index 55612aa..07dcf77 100755 --- a/next.config.js +++ b/next.config.js @@ -5,7 +5,7 @@ const nextConfig = { locales: ["cs"], defaultLocale: "cs", }, - output: "standalone", + trailingSlash: true, }; module.exports = nextConfig;