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 11import type { NextConfig } from "next" ;
22
33const nextConfig : NextConfig = {
4- /* config options here */
4+ typescript : { ignoreBuildErrors : true } ,
5+ eslint : { ignoreDuringBuilds : true } ,
56} ;
67
78export default nextConfig ;
Original file line number Diff line number Diff line change 11import type { NextConfig } from "next" ;
22
33const 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 } ,
96} ;
107
118export default nextConfig ;
Original file line number Diff line number Diff line change 11/** @type {import('next').NextConfig } */
22const nextConfig = {
3- typescript : {
4- ignoreBuildErrors : true ,
5- } ,
3+ typescript : { ignoreBuildErrors : true } ,
4+ eslint : { ignoreDuringBuilds : true } ,
65} ;
76
87export default nextConfig ;
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
33initOpenNextCloudflareForDev ( ) ;
44
55/** @type {import('next').NextConfig } */
6- const nextConfig = { } ;
6+ const nextConfig = {
7+ typescript : { ignoreBuildErrors : true } ,
8+ eslint : { ignoreDuringBuilds : true } ,
9+ } ;
710
811export default nextConfig ;
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
33initOpenNextCloudflareForDev ( ) ;
44
55/** @type {import('next').NextConfig } */
6- const nextConfig = { } ;
6+ const nextConfig = {
7+ typescript : { ignoreBuildErrors : true } ,
8+ eslint : { ignoreDuringBuilds : true } ,
9+ } ;
710
811export default nextConfig ;
Original file line number Diff line number Diff line change 11/** @type {import('next').NextConfig } */
22const nextConfig = {
33 typescript : { ignoreBuildErrors : true } ,
4+ eslint : { ignoreDuringBuilds : true } ,
45 experimental : {
56 ppr : true ,
67 } ,
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ initOpenNextCloudflareForDev();
44
55/** @type {import('next').NextConfig } */
66const nextConfig = {
7+ typescript : { ignoreBuildErrors : true } ,
8+ eslint : { ignoreDuringBuilds : true } ,
79 experimental : {
810 // Generate source map to validate the fix for opennextjs/opennextjs-cloudflare#341
911 serverSourceMaps : true ,
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ initOpenNextCloudflareForDev();
44
55/** @type {import('next').NextConfig } */
66const nextConfig = {
7+ typescript : { ignoreBuildErrors : true } ,
8+ eslint : { ignoreDuringBuilds : true } ,
79 experimental : {
810 // Generate source map to validate the fix for opennextjs/opennextjs-cloudflare#341
911 serverSourceMaps : true ,
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
44initOpenNextCloudflareForDev ( ) ;
55
66const nextConfig : NextConfig = {
7- /* config options here */
7+ typescript : { ignoreBuildErrors : true } ,
8+ eslint : { ignoreDuringBuilds : true } ,
89} ;
910
1011export default nextConfig ;
Original file line number Diff line number Diff line change 11/** @type {import('next').NextConfig } */
2- const nextConfig = { } ;
2+ const nextConfig = {
3+ typescript : { ignoreBuildErrors : true } ,
4+ eslint : { ignoreDuringBuilds : true } ,
5+ } ;
36
47export default nextConfig ;
You can’t perform that action at this time.
0 commit comments