mirror of
https://github.com/prdlk/leetcode.git
synced 2026-09-16 23:16:26 +00:00
23 lines
405 B
TypeScript
23 lines
405 B
TypeScript
import { defineConfig } from "blume";
|
|
|
|
export default defineConfig({
|
|
title: "Leetcode",
|
|
description: "Documentation powered by Blume.",
|
|
deployment: {
|
|
site: "https://prdlk.github.io",
|
|
base: "/leetcode",
|
|
},
|
|
navigation: {
|
|
tabs: [
|
|
{
|
|
label: "Guides",
|
|
path: "/guides",
|
|
},
|
|
{
|
|
title: "Solutions",
|
|
href: "/solutions",
|
|
},
|
|
],
|
|
},
|
|
});
|