@@ -36,27 +36,46 @@ interface ApiBackgroundConfig {
36
36
type ApiConfig = ApiStandardConfig | ApiScheduledConfig | ApiBackgroundConfig
37
37
38
38
export async function getAPIRoutesConfigs ( ctx : PluginContext ) {
39
+ const uniqueApiRoutes = new Set < string > ( )
40
+
39
41
const functionsConfigManifestPath = join (
40
42
ctx . publishDir ,
41
43
'server' ,
42
44
'functions-config-manifest.json' ,
43
45
)
44
- if ( ! existsSync ( functionsConfigManifestPath ) ) {
46
+ if ( existsSync ( functionsConfigManifestPath ) ) {
45
47
// 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
+ }
47
65
}
48
66
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
+ }
52
71
53
72
const appDir = ctx . resolveFromSiteDir ( '.' )
54
73
const pagesDir = join ( appDir , 'pages' )
55
74
const srcPagesDir = join ( appDir , 'src' , 'pages' )
56
75
const { pageExtensions } = ctx . requiredServerFiles . config
57
76
58
77
return Promise . all (
59
- Object . keys ( functionsConfigManifest . functions ) . map ( async ( apiRoute ) => {
78
+ [ ... uniqueApiRoutes ] . map ( async ( apiRoute ) => {
60
79
const filePath = getSourceFileForPage ( apiRoute , [ pagesDir , srcPagesDir ] , pageExtensions )
61
80
62
81
const sharedFields = {
0 commit comments