1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

build(deps): update Node.js to v24.0.2 to address security issue

Ref: https://nodejs.org/en/blog/release/v24.0.2
This commit is contained in:
2025-05-20 21:13:02 +02:00
parent d795025860
commit e044b4caea
13 changed files with 846 additions and 1233 deletions

View File

@ -1,4 +1,4 @@
FROM node:24.0.0-slim AS node-pnpm
FROM node:24.0.2-slim AS node-pnpm
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN npm install --global corepack@0.32.0 && corepack enable

View File

@ -21,6 +21,6 @@ export const config = {
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
*/
"/((?!api|_next/static|_next/image|images|favicon.ico).*)",
"/((?!api|_next/static|_next/image|images|favicon.ico|robots.txt).*)",
],
}

View File

@ -8,7 +8,6 @@ const nextConfig = {
images: {
unoptimized: true,
},
compress: false,
eslint: {
ignoreDuringBuilds: true,
},