forked from storacha/w3up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
35 lines (31 loc) · 908 Bytes
/
docusaurus.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Minimal [Docusaurus](https://docusaurus.io) configuration to allow us
// to generate docusaurus-compatible markdown from typedoc output.
const config = {
title: 'Web3.Storage Documentation',
tagline: 'The simple file storage service for IPFS and Filecoin',
url: 'https://docs.web3.storage',
baseUrl: '/',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
// Even if you don't use internalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
plugins: [
[
'docusaurus-plugin-typedoc',
{
tsconfig: './tsconfig.json',
out: 'markdown',
sidebar: {
categoryLabel: 'w3protocol',
},
},
],
],
}
module.exports = config