From 9dcbe5cd303beabea1637e05f345949fd1611859 Mon Sep 17 00:00:00 2001 From: zhumeisongsong Date: Wed, 6 Nov 2024 14:25:44 +0900 Subject: [PATCH] =?UTF-8?q?style:=20=F0=9F=92=84=20code=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/.vitepress/config.mts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/.vitepress/config.mts b/src/.vitepress/config.mts index 92c2d4c..c562703 100644 --- a/src/.vitepress/config.mts +++ b/src/.vitepress/config.mts @@ -1,4 +1,4 @@ -import { defineConfig } from 'vitepress' +import { defineConfig } from "vitepress"; // https://vitepress.dev/reference/site-config export default defineConfig({ @@ -7,14 +7,14 @@ export default defineConfig({ themeConfig: { // https://vitepress.dev/reference/default-theme-config nav: [ - { text: 'Home', link: '/' }, - { text: 'CV', link: 'https://zhumeisongsong.github.io/cv' }, - { text: 'Blog', link: 'https://zhumeisongsong.github.io/blog' } + { text: "Home", link: "/" }, + { text: "CV", link: "https://zhumeisongsong.github.io/cv" }, + { text: "Blog", link: "https://zhumeisongsong.github.io/blog" }, ], socialLinks: [ - { icon: 'github', link: 'https://github.com/zhumeisongsong' } - ] + { icon: "github", link: "https://github.com/zhumeisongsong" }, + ], }, head: [ [ @@ -30,6 +30,6 @@ export default defineConfig({ name: "google-site-verification", content: "1A3myPAsbW4yU-SCkZlmMSVmyagcPQGxCxU2IfHhx4", }, - ] + ], ], -}) +});