chore: comment out NODE_ENV in Dockerfile and remove console log from header component

This commit is contained in:
tuna2134
2025-09-09 22:34:16 +09:00
parent 9b0613f0b8
commit 533cc6753e
2 changed files with 1 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ RUN --mount=type=cache,target=/src/.next/cache \
FROM gcr.io/distroless/nodejs22-debian12
ENV NODE_ENV=production
# ENV NODE_ENV=production
WORKDIR /usr/src
COPY --chown=nonroot:nonroot ./public ./public

View File

@@ -24,7 +24,6 @@ const Header: React.FC = async () => {
},
);
const data = await res.json();
console.log(data);
const avatarURL = `https://cdn.discordapp.com/avatars/739702692393517076/${data.avatar}.png?size=1024`;
return (
<header className="flex h-screen w-screen items-center justify-center">