From b5537cfbc4d0bd9531e2a92fcc09015afdb1bfed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=9B=D0=AFS?= <68434721+arsfrr@users.noreply.github.com> Date: Thu, 18 Jul 2024 08:00:10 -0400 Subject: [PATCH] fix 2 --- vite.config.js | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/vite.config.js b/vite.config.js index 67fbe2f..4dd06c2 100644 --- a/vite.config.js +++ b/vite.config.js @@ -12,7 +12,6 @@ export default defineConfig(() => { }, ssr: { noExternal: [ - // If there are other packages that need to be processed by Vite, you can add them here. '@nolebase/vitepress-plugin-enhanced-readabilities', '@nolebase/ui', '@nolebase/vitepress-plugin-enhanced-readabilities/client', @@ -38,16 +37,10 @@ export default defineConfig(() => { }, plugins: [ GitChangelog({ - // Fill in your repository URL here - repoURL: () => 'https://github.com/openm-project/mcdoc.github.io', - }), - GitChangelogMarkdownSection({ - sections: { - disableChangelog: false, - disableContributors: true, - }, + repoURL: 'https://github.com/openm-project/mcdoc.github.io', }), + // Add other plugins if necessary ], // other vite configurations... } -}) +});