mjfs-us/.vitepress/config.ts

29 lines
705 B
TypeScript
Raw Normal View History

2024-06-20 06:55:13 +00:00
import { defineConfig } from "vitepress";
2024-06-20 06:33:21 +00:00
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Mitchell Simon",
description: "Software Engineer",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
2024-06-20 06:55:13 +00:00
{ text: "Home", link: "/" },
{ text: "Examples", link: "/markdown-examples" },
2024-06-20 06:33:21 +00:00
],
sidebar: [
{
2024-06-20 06:55:13 +00:00
text: "Examples",
2024-06-20 06:33:21 +00:00
items: [
2024-06-20 06:55:13 +00:00
{ text: "Markdown Examples", link: "/markdown-examples" },
{ text: "Runtime API Examples", link: "/api-examples" },
],
},
2024-06-20 06:33:21 +00:00
],
socialLinks: [
2024-06-20 06:55:13 +00:00
{ icon: "github", link: "https://github.com/vuejs/vitepress" },
],
},
});