diff options
author | 2023-07-23 03:59:43 -0700 | |
---|---|---|
committer | 2023-07-23 03:59:43 -0700 | |
commit | 4e852918a3bc8a08d4bd88c69865ad59e9c3bfc3 (patch) | |
tree | 90377cd48b81c84736960097fcad76518cf6ccd9 | |
parent | c76516fa38ccd537be4840cdc430ffb18349b0f9 (diff) | |
download | bun-4e852918a3bc8a08d4bd88c69865ad59e9c3bfc3.tar.gz bun-4e852918a3bc8a08d4bd88c69865ad59e9c3bfc3.tar.zst bun-4e852918a3bc8a08d4bd88c69865ad59e9c3bfc3.zip |
Raise redirect limit in bundler
-rw-r--r-- | src/bundler/bundle_v2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bundler/bundle_v2.zig b/src/bundler/bundle_v2.zig index bb6ac6d8a..dae63a60f 100644 --- a/src/bundler/bundle_v2.zig +++ b/src/bundler/bundle_v2.zig @@ -360,7 +360,7 @@ pub const BundleV2 = struct { redirect_map: PathToSourceIndexMap, dynamic_import_entry_points: *std.AutoArrayHashMap(Index.Int, void), - const MAX_REDIRECTS: usize = 20; + const MAX_REDIRECTS: usize = 64; // Find all files reachable from all entry points. This order should be // deterministic given that the entry point order is deterministic, since the |