mirror of
https://github.com/prdlk/leetcode.git
synced 2026-09-17 07:26:27 +00:00
feat(config): add Reference tab to navigationfeat(config): add Reference tab to navigation
22 lines
382 B
TypeScript
22 lines
382 B
TypeScript
import { defineConfig } from "blume";
|
|
|
|
export default defineConfig({
|
|
title: "Leetcode",
|
|
description: "Documentation for LeetCode solutions",
|
|
deployment: {
|
|
site: "https://prdlk.github.io",
|
|
base: "/leetcode",
|
|
},
|
|
content: {
|
|
root: "content",
|
|
},
|
|
navigation: {
|
|
tabs: [
|
|
{
|
|
label: "Reference",
|
|
path: "/reference",
|
|
},
|
|
],
|
|
},
|
|
});
|