We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ac7481b + d5aa2c8 commit 6dc6d38Copy full SHA for 6dc6d38
2 files changed
src/client/Dockerfile
@@ -4,6 +4,9 @@
4
FROM node:20-slim AS builder
5
WORKDIR /app
6
7
+# Set the environment to production for the build stage
8
+ENV NODE_ENV=production
9
+
10
# ---- MODIFIED SECTION ----
11
# Declare all build-time arguments that your application needs.
12
# Anything prefixed with NEXT_PUBLIC_ is needed for the client-side bundle.
src/client/app/layout.js
@@ -62,7 +62,7 @@ export default function RootLayout({ children }) {
62
sizes="16x16"
63
href="/favicon-16x16.png"
64
/>
65
- <meta name="theme-color" content="#000000" />
+ <meta name="theme-color" content="#F1A21D" />
66
<link rel="manifest" href="/manifest.json" />
67
</head>
68
<body className="font-sans">
0 commit comments