mirror of
https://github.com/prdlk/leetcode.git
synced 2026-09-16 23:16:26 +00:00
20 lines
448 B
TypeScript
20 lines
448 B
TypeScript
import { defineConfig } from "blume";
|
|
|
|
export default defineConfig({
|
|
title: "Odyssey",
|
|
logo: "https://avatars.githubusercontent.com/u/3804558?s=64&v=4",
|
|
description: "Documentation powered by Blume.",
|
|
content: {
|
|
root: "content",
|
|
},
|
|
deployment: {
|
|
site: "https://od.prad.codes",
|
|
},
|
|
navigation: {
|
|
tabs: [
|
|
{ label: "Coding", path: "/coding" },
|
|
{ label: "System Design", path: "/system-design" },
|
|
],
|
|
},
|
|
});
|