From 9923ad226d1611f002d07c2c4e7f6e9e3512f751 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Thu, 26 Jan 2023 15:55:38 -0600 Subject: [PATCH] fix: comment plugin out --- docusaurus.config.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index d5c05c5f4..04a6a75e7 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -159,16 +159,16 @@ const config = { darkTheme: darkCodeTheme, }, }), - plugins : [ - [ - 'docusaurus-plugin-typedoc', - { - //if you're editing website, please change this to your local branch of sern to generate documentation - entryPoints: ['../sernHandlerV2/src/index.ts'], - tsconfig: '../sernHandlerV2/tsconfig-esm.json', - }, - ] - ] + // plugins : [ + // [ + // 'docusaurus-plugin-typedoc', + // { + // //if you're editing website, please change this to your local branch of sern to generate documentation + // entryPoints: ['../sernHandlerV2/src/index.ts'], + // tsconfig: '../sernHandlerV2/tsconfig-esm.json', + // }, + // ] + // ] }; module.exports = config;