Skip to content

Commit

Permalink
chore: update next config
Browse files Browse the repository at this point in the history
  • Loading branch information
besscroft committed Apr 21, 2024
1 parent 6350341 commit fe2177b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ ENV NEXT_TELEMETRY_DISABLED 1
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
COPY ./.env ./
COPY ./next.config.mjs ./next.config.mjs
COPY ./.env ./.env

RUN corepack enable pnpm && pnpm run build

Expand Down
3 changes: 3 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
};

export default nextConfig;

0 comments on commit fe2177b

Please sign in to comment.