Skip to content

Commit

Permalink
fix: update module.exports:
Browse files Browse the repository at this point in the history
- add customDocsPath
  • Loading branch information
pizofreude committed Oct 25, 2023
1 parent fcf568b commit c8c4022
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,18 @@ const config = {
}),
};

module.exports = config;
// module.exports = config;

// docusaurus.config.js
module.exports = {
...config, // Spread the existing config object
plugins: [
[
'@docusaurus/plugin-content-docs',
{
customDocsPath: './website', // Add the customDocsPath option
},
],
],
};

0 comments on commit c8c4022

Please sign in to comment.