Skip to content

Commit 672e494

Browse files
authoredNov 18, 2023
feat(build): html head meta generator (#3219)
1 parent 6761036 commit 672e494

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/node/build/render.ts

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import {
1717
type PageData,
1818
type SSGContext
1919
} from '../shared'
20+
import { version } from '../../../package.json'
2021

2122
export async function renderPage(
2223
render: (path: string) => Promise<SSGContext>,
@@ -162,6 +163,7 @@ export async function renderPage(
162163
? ''
163164
: `<meta name="description" content="${description}">`
164165
}
166+
<meta name="generator" content="VitePress v${version}">
165167
${stylesheetLink}
166168
${metadataScript.inHead ? metadataScript.html : ''}
167169
${

0 commit comments

Comments
 (0)
Please sign in to comment.