mirror of
https://github.com/luxfi/netrunner.git
synced 2026-07-27 00:04:23 +00:00
- Use luxfi/consensus/validators instead of node/consensus/validators - Use luxfi/ids instead of node/ids - Use luxfi/log instead of node/utils/logging - Use luxfi/utils/set instead of node/utils/set - Use luxfi/genesis instead of node/genesis - Use luxfi/evm/plugin/evm/client instead of geth/plugin/evm/client Removes dependency on non-existent node packages in v1.21+
28 lines
494 B
TypeScript
28 lines
494 B
TypeScript
import {
|
|
defineConfig,
|
|
defineDocs,
|
|
} from "fumadocs-mdx/config"
|
|
import rehypePrettyCode from "rehype-pretty-code"
|
|
|
|
export default defineConfig({
|
|
mdxOptions: {
|
|
rehypePlugins: [
|
|
[
|
|
rehypePrettyCode,
|
|
{
|
|
theme: {
|
|
dark: "github-dark-dimmed",
|
|
light: "github-light",
|
|
},
|
|
keepBackground: false,
|
|
defaultLang: "go",
|
|
},
|
|
],
|
|
],
|
|
},
|
|
})
|
|
|
|
export const docs = defineDocs({
|
|
dir: "content/docs",
|
|
})
|