You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
only log export-no-custom-routes warning if unsupported (#57298)
This doesn't need to error, we can instead warn that the functionality will not work as expected out of the box. Support can be added for outside of Next for this to behave as expected.
These are supported when deployed via the Nextjs builder ([x-ref](https://github.com/vercel/vercel/blob/main/packages/next/src/index.ts#L851-L855)).
'Specified "i18n" cannot be used with "output: export". See more info here: https://nextjs.org/docs/messages/export-no-i18n'
258
259
)
259
260
}
260
-
if(result.rewrites){
261
-
thrownewError(
262
-
'Specified "rewrites" cannot be used with "output: export". See more info here: https://nextjs.org/docs/messages/export-no-custom-routes'
263
-
)
264
-
}
265
-
if(result.redirects){
266
-
thrownewError(
267
-
'Specified "redirects" cannot be used with "output: export". See more info here: https://nextjs.org/docs/messages/export-no-custom-routes'
268
-
)
269
-
}
270
-
if(result.headers){
271
-
thrownewError(
272
-
'Specified "headers" cannot be used with "output: export". See more info here: https://nextjs.org/docs/messages/export-no-custom-routes'
273
-
)
261
+
262
+
if(!hasNextSupport){
263
+
if(result.rewrites){
264
+
Log.warn(
265
+
'Specified "rewrites" will not automatically work with "output: export". See more info here: https://nextjs.org/docs/messages/export-no-custom-routes'
266
+
)
267
+
}
268
+
if(result.redirects){
269
+
Log.warn(
270
+
'Specified "redirects" will not automatically work with "output: export". See more info here: https://nextjs.org/docs/messages/export-no-custom-routes'
271
+
)
272
+
}
273
+
if(result.headers){
274
+
Log.warn(
275
+
'Specified "headers" will not automatically work with "output: export". See more info here: https://nextjs.org/docs/messages/export-no-custom-routes'
0 commit comments