From b855e8b6b470e8321b3d82fecd33e8b355bdca73 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Sun, 27 Jul 2025 00:55:54 +0800 Subject: [PATCH] style: unify quote style in rollup config --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index d9322f83a..42e205e01 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -11,7 +11,7 @@ const DIST = 'assets/js/dist'; const banner = `/*! * ${pkg.name} v${pkg.version} | © ${pkg.since} ${pkg.author} | ${pkg.license} Licensed | ${pkg.homepage} */`; -const frontmatter = `---\npermalink: /:basename\n---\n`; +const frontmatter = '---\npermalink: /:basename\n---\n'; const isProd = process.env.BUILD === 'production'; let hasWatched = false;