mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-10 07:37:19 +02:00
Add plugin usage to build script, update example files
This commit is contained in:
parent
30a8ff329a
commit
a7b5148e06
3 changed files with 9 additions and 64 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue