We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6761036 commit 672e494Copy full SHA for 672e494
src/node/build/render.ts
@@ -17,6 +17,7 @@ import {
17
type PageData,
18
type SSGContext
19
} from '../shared'
20
+import { version } from '../../../package.json'
21
22
export async function renderPage(
23
render: (path: string) => Promise<SSGContext>,
@@ -162,6 +163,7 @@ export async function renderPage(
162
163
? ''
164
: `<meta name="description" content="${description}">`
165
}
166
+ <meta name="generator" content="VitePress v${version}">
167
${stylesheetLink}
168
${metadataScript.inHead ? metadataScript.html : ''}
169
${
0 commit comments