We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 842ca1a commit e166abeCopy full SHA for e166abe
packages/next/src/build/entries.ts
@@ -114,7 +114,10 @@ export async function collectAppFiles(
114
const appPaths = []
115
const layoutPaths = []
116
const defaultPaths = []
117
- // requestPath => relativePath
+ // Map of "requestPath" => "relativePath".
118
+ // "requestPath" will be used for the output path "{distDir}/static/metadata/{requestPath}" and
119
+ // its matcher. When the request comes in, the filesystem handler will look for the output path
120
+ // and serve the file if exists. "relativePath" will be used to copy the file to the output path.
121
const staticMetadataFiles = new Map<string, string>()
122
123
for (const relativePath of allAppFiles) {
0 commit comments