File tree Expand file tree Collapse file tree 11 files changed +27
-13
lines changed
next-partial-prerendering Expand file tree Collapse file tree 11 files changed +27
-13
lines changed Original file line number Diff line number Diff line change 1
1
import type { NextConfig } from "next" ;
2
2
3
3
const nextConfig : NextConfig = {
4
- /* config options here */
4
+ typescript : { ignoreBuildErrors : true } ,
5
+ eslint : { ignoreDuringBuilds : true } ,
5
6
} ;
6
7
7
8
export default nextConfig ;
Original file line number Diff line number Diff line change 1
1
import type { NextConfig } from "next" ;
2
2
3
3
const nextConfig : NextConfig = {
4
- eslint : {
5
- // Warning: This allows production builds to successfully complete even if
6
- // your project has ESLint errors.
7
- ignoreDuringBuilds : true ,
8
- } ,
4
+ typescript : { ignoreBuildErrors : true } ,
5
+ eslint : { ignoreDuringBuilds : true } ,
9
6
} ;
10
7
11
8
export default nextConfig ;
Original file line number Diff line number Diff line change 1
1
/** @type {import('next').NextConfig } */
2
2
const nextConfig = {
3
- typescript : {
4
- ignoreBuildErrors : true ,
5
- } ,
3
+ typescript : { ignoreBuildErrors : true } ,
4
+ eslint : { ignoreDuringBuilds : true } ,
6
5
} ;
7
6
8
7
export default nextConfig ;
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
3
3
initOpenNextCloudflareForDev ( ) ;
4
4
5
5
/** @type {import('next').NextConfig } */
6
- const nextConfig = { } ;
6
+ const nextConfig = {
7
+ typescript : { ignoreBuildErrors : true } ,
8
+ eslint : { ignoreDuringBuilds : true } ,
9
+ } ;
7
10
8
11
export default nextConfig ;
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
3
3
initOpenNextCloudflareForDev ( ) ;
4
4
5
5
/** @type {import('next').NextConfig } */
6
- const nextConfig = { } ;
6
+ const nextConfig = {
7
+ typescript : { ignoreBuildErrors : true } ,
8
+ eslint : { ignoreDuringBuilds : true } ,
9
+ } ;
7
10
8
11
export default nextConfig ;
Original file line number Diff line number Diff line change 1
1
/** @type {import('next').NextConfig } */
2
2
const nextConfig = {
3
3
typescript : { ignoreBuildErrors : true } ,
4
+ eslint : { ignoreDuringBuilds : true } ,
4
5
experimental : {
5
6
ppr : true ,
6
7
} ,
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ initOpenNextCloudflareForDev();
4
4
5
5
/** @type {import('next').NextConfig } */
6
6
const nextConfig = {
7
+ typescript : { ignoreBuildErrors : true } ,
8
+ eslint : { ignoreDuringBuilds : true } ,
7
9
experimental : {
8
10
// Generate source map to validate the fix for opennextjs/opennextjs-cloudflare#341
9
11
serverSourceMaps : true ,
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ initOpenNextCloudflareForDev();
4
4
5
5
/** @type {import('next').NextConfig } */
6
6
const nextConfig = {
7
+ typescript : { ignoreBuildErrors : true } ,
8
+ eslint : { ignoreDuringBuilds : true } ,
7
9
experimental : {
8
10
// Generate source map to validate the fix for opennextjs/opennextjs-cloudflare#341
9
11
serverSourceMaps : true ,
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
4
4
initOpenNextCloudflareForDev ( ) ;
5
5
6
6
const nextConfig : NextConfig = {
7
- /* config options here */
7
+ typescript : { ignoreBuildErrors : true } ,
8
+ eslint : { ignoreDuringBuilds : true } ,
8
9
} ;
9
10
10
11
export default nextConfig ;
Original file line number Diff line number Diff line change 1
1
/** @type {import('next').NextConfig } */
2
- const nextConfig = { } ;
2
+ const nextConfig = {
3
+ typescript : { ignoreBuildErrors : true } ,
4
+ eslint : { ignoreDuringBuilds : true } ,
5
+ } ;
3
6
4
7
export default nextConfig ;
You can’t perform that action at this time.
0 commit comments