-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocgen.config.ts
More file actions
23 lines (22 loc) · 761 Bytes
/
docgen.config.ts
File metadata and controls
23 lines (22 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import type { DocgenConfig } from "solidity-doc-generator";
export default {
outDir: "docs",
sourceDir: "src",
buildInfoDir: "artifacts/build-info",
exclude: ["**/*.t.sol", "**/test/**"],
generateVitepressSidebar: true,
siteTitle: "Solidity Scale Codec",
siteDescription:
"Complete API reference for SCALE codec implementation in Solidity",
vitepressBasePath: "/solidity-scale-codec/",
repository: "https://github.com/LucasGrasso/solidity-scale-codec",
indexTemplate: "./templates/index.md",
customDocsDir: "./guides",
frontmatter: {
author: "LucasGrasso",
license: "Apache-2.0",
},
// Markdown Template Rendering (OpenZeppelin-style)
templateDir: "./templates",
useMarkdownTemplate: true,
} satisfies DocgenConfig;