Skip to content

Commit e6674ee

Browse files
authored
Merge branch 'main' into michalpiechowiak/frb-1360-v15-canary-dynamic-routes-with-fallback-true-are-failing
2 parents 5ed56ed + e4916da commit e6674ee

File tree

3 files changed

+33
-14
lines changed

3 files changed

+33
-14
lines changed

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"@netlify/edge-functions": "^2.11.0",
5656
"@netlify/eslint-config-node": "^7.0.1",
5757
"@netlify/functions": "^2.8.2",
58-
"@netlify/serverless-functions-api": "^1.29.0",
58+
"@netlify/serverless-functions-api": "^1.29.1",
5959
"@netlify/zip-it-and-ship-it": "^9.40.0",
6060
"@opentelemetry/api": "^1.8.0",
6161
"@opentelemetry/exporter-trace-otlp-http": "^0.51.0",

src/build/advanced-api-routes.ts

+25-6
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,46 @@ interface ApiBackgroundConfig {
3636
type ApiConfig = ApiStandardConfig | ApiScheduledConfig | ApiBackgroundConfig
3737

3838
export async function getAPIRoutesConfigs(ctx: PluginContext) {
39+
const uniqueApiRoutes = new Set<string>()
40+
3941
const functionsConfigManifestPath = join(
4042
ctx.publishDir,
4143
'server',
4244
'functions-config-manifest.json',
4345
)
44-
if (!existsSync(functionsConfigManifestPath)) {
46+
if (existsSync(functionsConfigManifestPath)) {
4547
// before https://github.com/vercel/next.js/pull/60163 this file might not have been produced if there were no API routes at all
46-
return []
48+
const functionsConfigManifest = JSON.parse(
49+
await readFile(functionsConfigManifestPath, 'utf-8'),
50+
) as FunctionsConfigManifest
51+
52+
for (const apiRoute of Object.keys(functionsConfigManifest.functions)) {
53+
uniqueApiRoutes.add(apiRoute)
54+
}
55+
}
56+
57+
const pagesManifestPath = join(ctx.publishDir, 'server', 'pages-manifest.json')
58+
if (existsSync(pagesManifestPath)) {
59+
const pagesManifest = JSON.parse(await readFile(pagesManifestPath, 'utf-8'))
60+
for (const route of Object.keys(pagesManifest)) {
61+
if (route.startsWith('/api/')) {
62+
uniqueApiRoutes.add(route)
63+
}
64+
}
4765
}
4866

49-
const functionsConfigManifest = JSON.parse(
50-
await readFile(functionsConfigManifestPath, 'utf-8'),
51-
) as FunctionsConfigManifest
67+
// no routes to analyze
68+
if (uniqueApiRoutes.size === 0) {
69+
return []
70+
}
5271

5372
const appDir = ctx.resolveFromSiteDir('.')
5473
const pagesDir = join(appDir, 'pages')
5574
const srcPagesDir = join(appDir, 'src', 'pages')
5675
const { pageExtensions } = ctx.requiredServerFiles.config
5776

5877
return Promise.all(
59-
Object.keys(functionsConfigManifest.functions).map(async (apiRoute) => {
78+
[...uniqueApiRoutes].map(async (apiRoute) => {
6079
const filePath = getSourceFileForPage(apiRoute, [pagesDir, srcPagesDir], pageExtensions)
6180

6281
const sharedFields = {

0 commit comments

Comments
 (0)