mirror of
https://github.com/prdlk/leetcode.git
synced 2026-09-17 15:36:26 +00:00
23 lines
414 B
TypeScript
23 lines
414 B
TypeScript
import { defineConfig } from "blume";
|
|
|
|
export default defineConfig({
|
|
title: "Leetcode",
|
|
description: "Documentation for LeetCode solutions",
|
|
deployment: {
|
|
site: "https://prdlk.github.io",
|
|
base: "/leetcode",
|
|
},
|
|
navigation: {
|
|
tabs: [
|
|
{
|
|
label: "Solutions",
|
|
path: "/solutions",
|
|
},
|
|
{
|
|
label: "Progress",
|
|
path: "/progress",
|
|
},
|
|
],
|
|
},
|
|
});
|