Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
magne4000 committed Feb 20, 2025
1 parent e1751eb commit 9260b0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vike/node/plugin/plugins/buildConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function buildConfig(): Plugin[] {
sequential: true,
async handler(options, bundle) {
if (this.environment.name === 'ssr') {
await writeTempManifest(getOutDirs(this.environment.config));
await writeTempManifest(getOutDirs(this.environment.config))
}
if (viteIsSSR(this.environment.config)) {
// Replace __VITE_ASSETS_MANIFEST__ in all server-side bundles
Expand All @@ -152,7 +152,7 @@ function buildConfig(): Plugin[] {
sequential: true,
async handler(options, bundle) {
if (viteIsSSR(config)) {
await writeTempManifest(getOutDirs(config));
await writeTempManifest(getOutDirs(config))
await set_ASSETS_MANIFEST(options, bundle, assetsJsonFilePath)
}
}
Expand Down

0 comments on commit 9260b0e

Please sign in to comment.