Add plugin usage to build script, update example files

This commit is contained in:
Frank Li 2017-07-10 16:34:07 -07:00
parent 30a8ff329a
commit a7b5148e06
3 changed files with 9 additions and 64 deletions

View file

@ -7,8 +7,6 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
const fs = require("fs");
/* List of projects/orgs using your project for the users page */
const users = [
{
@ -76,6 +74,11 @@ const siteConfig = {
/* gaTrackingId: "" */
};
/* DO NOT EDIT BELOW THIS LINE */
const fs = require("fs");
let languages;
if (fs.existsSync("./languages.js")) {
languages = require("./languages.js");