Skip to content

Commit d2a5592

Browse files
authored
Merge pull request #2247 from line/fix/next-version
fix: downgrade next version to ^15.5.5 and update renovate configuration for allowedVersions
2 parents 594c4fe + 9b9bc26 commit d2a5592

File tree

4 files changed

+60
-56
lines changed

4 files changed

+60
-56
lines changed

apps/web/next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ createJiti(fileURLToPath(import.meta.url))('./src/env');
77

88
/** @type {import('next').NextConfig} */
99
const nextConfig = {
10-
reactStrictMode: true,
1110
i18n: i18nConfig.default.i18n,
1211
output: 'standalone',
1312
eslint: { ignoreDuringBuilds: true },
13+
typescript: { ignoreBuildErrors: true },
1414
transpilePackages: ['@ufb/react'],
1515
compiler: { removeConsole: process.env.NODE_ENV === 'production' },
1616
images: { remotePatterns: [{ hostname: '*' }] },

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"jwt-decode": "^4.0.0",
5050
"linkify": "^0.2.1",
5151
"linkify-react": "^4.3.2",
52-
"next": "^16.0.1",
52+
"next": "^15.5.5",
5353
"next-i18next": "^15.4.2",
5454
"next-themes": "^0.4.6",
5555
"nuqs": "2.4.3",

pnpm-lock.yaml

Lines changed: 54 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

renovate.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
{
1818
"matchPackageNames": ["@swc/core"],
1919
"allowedVersions": "<=1.13.5"
20+
},
21+
{
22+
"matchPackageNames": ["next"],
23+
"allowedVersions": "<16.0.0"
2024
}
2125
],
2226
"updateInternalDeps": true,

0 commit comments

Comments
 (0)