Skip to content

Commit

Permalink
fix(core): handle templateBuildRenderer option correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorlxy committed Sep 12, 2024
1 parent e2db42a commit 427e3cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/src/app/resolveAppOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const resolveAppOptions = ({
templateBuild = path.normalize(
require.resolve('@vuepress/client/templates/build.html'),
),
templateBuildRenderer = templateRenderer,
// common config
bundler,
debug = false,
Expand Down Expand Up @@ -61,7 +62,7 @@ export const resolveAppOptions = ({
shouldPreload,
shouldPrefetch,
templateBuild,
templateBuildRenderer: templateRenderer,
templateBuildRenderer,
bundler,
debug,
markdown,
Expand Down

0 comments on commit 427e3cc

Please sign in to comment.