We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b17ce0a commit 2293252Copy full SHA for 2293252
Dockerfile.prod
@@ -37,7 +37,8 @@ RUN yarn build
37
FROM base AS runner
38
WORKDIR /app
39
40
-ENV NODE_ENV=production
+#ENV NODE_ENV production
41
+ENV NODE_ENV="production"
42
# Uncomment the following line in case you want to disable telemetry during runtime.
43
# ENV NEXT_TELEMETRY_DISABLED 1
44
next.config.js
@@ -2,9 +2,9 @@
2
const nextConfig = {
3
reactStrictMode: true,
4
output: "standalone",
5
- eslint: {
6
- ignoreDuringBuilds: true,
7
- },
+ // eslint: {
+ // ignoreDuringBuilds: true,
+ // },
8
};
9
10
module.exports = nextConfig;
0 commit comments