Skip to content

Commit

Permalink
Disable bundle mode for stable builds like react
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Feb 26, 2023
1 parent 2068737 commit 75d485f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ func esmHandler() rex.Handle {

isBare := false
isPkgCss := ctx.Form.Has("css")
isBundleMode := ctx.Form.Has("bundle")
isBundleMode := ctx.Form.Has("bundle") && !stableBuild[reqPkg.Name]
isDev := ctx.Form.Has("dev")
isPined := ctx.Form.Has("pin") || hasBuildVerPrefix
isWorker := ctx.Form.Has("worker")
Expand Down

0 comments on commit 75d485f

Please sign in to comment.