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;