We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62f412c commit 1528049Copy full SHA for 1528049
vite.config.ts
@@ -16,7 +16,7 @@ const headSha = sh('git rev-parse HEAD');
16
const headCommitCount = sh('git rev-list --count HEAD');
17
const headBranch = sh('git rev-parse --abbrev-ref HEAD');
18
const anyChanges = sh('git status --porcelain -uall', '').length > 0;
19
-const BUILD_INFO = isDocker ? '使用 Docker 构建' : `构建版本 {${headCommitCount}${anyChanges ? '*' : ''}}`;
+const BUILD_INFO = isDocker ? '使用 Docker 构建' : `构建版本 ${headCommitCount}${anyChanges ? '*' : ''}`;
20
21
// https://vitejs.dev/config/
22
export default defineConfig({
0 commit comments