Skip to content

Commit 95fdca3

Browse files
fix: Content-hash-based filename when bundling with wasm_split (#5340)
Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
1 parent c73dc43 commit 95fdca3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/src/build/request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5015,7 +5015,7 @@ impl BuildRequest {
50155015

50165016
/// Check if the wasm output should be bundled to an asset type app.
50175017
fn should_bundle_to_asset(&self) -> bool {
5018-
self.release && !self.wasm_split && self.bundle == BundleFormat::Web
5018+
self.release && self.bundle == BundleFormat::Web
50195019
}
50205020

50215021
/// Bundle the web app

0 commit comments

Comments
 (0)