mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
Provide a more useful error in event someone tries to build site but hasn't provided localized files
This commit is contained in:
parent
f48ff77322
commit
e71b4d902e
|
|
@ -136,6 +136,13 @@ class HeaderNav extends React.Component {
|
|||
link.doc;
|
||||
}
|
||||
if (!Metadata[id]) {
|
||||
if (id != link.doc) {
|
||||
throw new Error(
|
||||
"It looks like you've enabled language support, but haven't provided translated files. The document with id: '" +
|
||||
id +
|
||||
"' doesn't exist."
|
||||
);
|
||||
}
|
||||
throw new Error(
|
||||
"A headerLink is specified with a document that does not exist. No document exists with id: " +
|
||||
link.doc
|
||||
|
|
|
|||
Loading…
Reference in New Issue