forked from iotaledger-archive/introduction-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
24 lines (23 loc) · 843 Bytes
/
docusaurus.config.js
File metadata and controls
24 lines (23 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const path = require('path');
module.exports = {
plugins: [
[
'@docusaurus/plugin-content-docs',
{
id: 'introduction-docs',
path: path.resolve(__dirname, 'docs'),
routeBasePath: 'introduction',
sidebarPath: path.resolve(__dirname, 'sidebars.js'),
editUrl: 'https://github.com/iotaledger/introduction-docs/edit/main/docs',
remarkPlugins: [require('remark-code-import'), require('remark-import-partial'), require('remark-remove-comments')],
versions: {
current: {
label: 'IOTA',
badge: true
},
},
}
],
],
staticDirectories: [path.resolve(__dirname, 'static')],
};