Provide a more useful error in event someone tries to build site but hasn't provided localized files

This commit is contained in:
Eric Nakagawa 2017-09-25 11:26:15 -07:00
parent f48ff77322
commit e71b4d902e

View file

@ -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