Skip to content

Commit b3565cb

Browse files
committedAug 24, 2022
fix(bundler-vite): do not change output entry of client bundle (close #1043)
1 parent bdf2d15 commit b3565cb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎packages/bundler-vite/src/plugins/mainPlugin.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,12 @@ import '@vuepress/client/app'
7878
fs.readJsonSync(app.dir.client('package.json')).exports['./app']
7979
),
8080
output: {
81-
// also add hash to ssr entry file, so that users could build multiple sites in a single process
82-
entryFileNames: `[name].[hash].mjs`,
81+
...(isServer
82+
? {
83+
// also add hash to ssr entry file, so that users could build multiple sites in a single process
84+
entryFileNames: `[name].[hash].mjs`,
85+
}
86+
: {}),
8387
},
8488
preserveEntrySignatures: 'allow-extension',
8589
},

0 commit comments

Comments
 (0)
Please sign in to comment.