From defda02b40e7b2dd53070d859e0dc63806302d57 Mon Sep 17 00:00:00 2001 From: anlyyao Date: Thu, 26 Jun 2025 12:26:08 +0800 Subject: [PATCH] fix: change the log output path to the _site folder --- site/plugins/changelog-to-json/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/plugins/changelog-to-json/index.ts b/site/plugins/changelog-to-json/index.ts index 3fd63875c4..b0b1b4a0e1 100644 --- a/site/plugins/changelog-to-json/index.ts +++ b/site/plugins/changelog-to-json/index.ts @@ -7,7 +7,7 @@ import generateChangelogJson from '../../../src/_common/docs/plugins/changelog-t const __dirname = dirname(fileURLToPath(import.meta.url)); -const outputPath = path.resolve(__dirname, '../../dist/changelog.json'); +const outputPath = path.resolve(__dirname, '../../../_site/changelog.json'); const changelogPath = path.resolve(__dirname, '../../../CHANGELOG.md'); export default function changelog2Json() {