mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-09 23:27:28 +02:00
Merge pull request #88 from ericnakagawa/master
Removed a redundant feature, added an error message to help troubleshooting building localized sites.
This commit is contained in:
commit
effd1113ad
5 changed files with 15 additions and 8 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue