Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/next/errors.json
Original file line number Diff line number Diff line change
Expand Up @@ -708,5 +708,6 @@
"707": "Invariant app-page handler received invalid cache entry %s",
"708": "Failed to persist Chrome DevTools workspace UUID. The Chrome DevTools Workspace needs to be reconnected after the next page reload.",
"709": "`rspack.getModuleNamedExports` is not supported by the wasm bindings.",
"710": "Unable to remove an invalidated webpack cache. If this issue persists you can work around it by deleting %s"
"710": "Unable to remove an invalidated webpack cache. If this issue persists you can work around it by deleting %s",
"711": "Can't resolve %s"
}
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,8 @@ async function createTreeCodeFromPath(
${createMetadataExportsCode(metadata)}
}]`
continue
} else {
throw new Error(`Can't resolve ${matchedPagePath}`)
}
}

Expand Down