Skip to content

Commit

Permalink
Merge pull request #43 from zhumeisongsong/feature/rename-index-md
Browse files Browse the repository at this point in the history
feat: ✨ add base and lastUpdated to config
  • Loading branch information
zhumeisongsong authored Oct 30, 2024
2 parents 7140245 + b8ec2da commit bf172da
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/.vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import { defineConfig } from 'vitepress'
import { defineConfig } from "vitepress";

// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Song's CV",
description: "Software engineer based in Tokyo. 🇯🇵",
base: "/cv/",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'CV', link: '/' },
{ text: 'Blog', link: '/blog' }
{ text: "CV", link: "/" },
{ text: "Blog", link: "/blog" },
],

socialLinks: [
{ icon: 'github', link: 'https://github.com/zhumeisongsong/cv' }
]
}
})
{ icon: "github", link: "https://github.com/zhumeisongsong/cv" },
],
},
lastUpdated: true
});
Binary file removed src/cv.ja.pdf
Binary file not shown.
Binary file removed src/cv.pdf
Binary file not shown.
File renamed without changes.

0 comments on commit bf172da

Please sign in to comment.