Skip to content

Commit b1d1ed6

Browse files
authored
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)).
1 parent 4bbf9b6 commit b1d1ed6

File tree

2 files changed

+92
-41
lines changed

2 files changed

+92
-41
lines changed

packages/next/src/server/config.ts

+18-14
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import { pathHasPrefix } from '../shared/lib/router/utils/path-has-prefix'
2323

2424
import { ZodParsedType, util as ZodUtil } from 'next/dist/compiled/zod'
2525
import type { ZodError, ZodIssue } from 'next/dist/compiled/zod'
26+
import { hasNextSupport } from '../telemetry/ci-info'
2627

2728
export { normalizeConfig } from './config-shared'
2829
export type { DomainLocale, NextConfig } from './config-shared'
@@ -257,20 +258,23 @@ function assignDefaults(
257258
'Specified "i18n" cannot be used with "output: export". See more info here: https://nextjs.org/docs/messages/export-no-i18n'
258259
)
259260
}
260-
if (result.rewrites) {
261-
throw new Error(
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-
throw new Error(
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-
throw new Error(
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'
276+
)
277+
}
274278
}
275279
}
276280

test/integration/config-output-export/test/index.test.ts

+74-27
Original file line numberDiff line numberDiff line change
@@ -64,39 +64,86 @@ describe('config-output-export', () => {
6464
)
6565
})
6666

67-
it('should error with "rewrites" config', async () => {
68-
const { stderr } = await runDev({
69-
output: 'export',
70-
rewrites: [{ source: '/from', destination: '/to' }],
67+
describe('when hasNextSupport = false', () => {
68+
it('should error with "rewrites" config', async () => {
69+
const { stderr } = await runDev({
70+
output: 'export',
71+
rewrites: [{ source: '/from', destination: '/to' }],
72+
})
73+
expect(stderr).toContain(
74+
'Specified "rewrites" will not automatically work with "output: export".'
75+
)
7176
})
72-
expect(stderr).toContain(
73-
'Specified "rewrites" cannot be used with "output: export".'
74-
)
75-
})
7677

77-
it('should error with "redirects" config', async () => {
78-
const { stderr } = await runDev({
79-
output: 'export',
80-
redirects: [{ source: '/from', destination: '/to', permanent: true }],
78+
it('should error with "redirects" config', async () => {
79+
const { stderr } = await runDev({
80+
output: 'export',
81+
redirects: [{ source: '/from', destination: '/to', permanent: true }],
82+
})
83+
expect(stderr).toContain(
84+
'Specified "redirects" will not automatically work with "output: export".'
85+
)
86+
})
87+
88+
it('should error with "headers" config', async () => {
89+
const { stderr } = await runDev({
90+
output: 'export',
91+
headers: [
92+
{
93+
source: '/foo',
94+
headers: [{ key: 'x-foo', value: 'val' }],
95+
},
96+
],
97+
})
98+
expect(stderr).toContain(
99+
'Specified "headers" will not automatically work with "output: export".'
100+
)
81101
})
82-
expect(stderr).toContain(
83-
'Specified "redirects" cannot be used with "output: export".'
84-
)
85102
})
86103

87-
it('should error with "headers" config', async () => {
88-
const { stderr } = await runDev({
89-
output: 'export',
90-
headers: [
91-
{
92-
source: '/foo',
93-
headers: [{ key: 'x-foo', value: 'val' }],
94-
},
95-
],
104+
describe('when hasNextSupport = true', () => {
105+
beforeAll(() => {
106+
process.env.NOW_BUILDER = '1'
107+
})
108+
109+
afterAll(() => {
110+
delete process.env.NOW_BUILDER
111+
})
112+
113+
it('should error with "rewrites" config', async () => {
114+
const { stderr } = await runDev({
115+
output: 'export',
116+
rewrites: [{ source: '/from', destination: '/to' }],
117+
})
118+
expect(stderr).not.toContain(
119+
'Specified "rewrites" will not automatically work with "output: export".'
120+
)
121+
})
122+
123+
it('should error with "redirects" config', async () => {
124+
const { stderr } = await runDev({
125+
output: 'export',
126+
redirects: [{ source: '/from', destination: '/to', permanent: true }],
127+
})
128+
expect(stderr).not.toContain(
129+
'Specified "redirects" will not automatically work with "output: export".'
130+
)
131+
})
132+
133+
it('should error with "headers" config', async () => {
134+
const { stderr } = await runDev({
135+
output: 'export',
136+
headers: [
137+
{
138+
source: '/foo',
139+
headers: [{ key: 'x-foo', value: 'val' }],
140+
},
141+
],
142+
})
143+
expect(stderr).not.toContain(
144+
'Specified "headers" will not automatically work with "output: export".'
145+
)
96146
})
97-
expect(stderr).toContain(
98-
'Specified "headers" cannot be used with "output: export".'
99-
)
100147
})
101148

102149
it('should error with api routes function', async () => {

0 commit comments

Comments
 (0)