browser.tools: reduce eval branch quota in minify

This commit is contained in:
Adrià Arrufat
2026-05-11 09:18:09 +02:00
parent 0ffabdd278
commit 3273898e97

View File

@@ -16,7 +16,7 @@ pub const ToolDef = struct {
};
pub fn minify(comptime json: []const u8) []const u8 {
@setEvalBranchQuota(100000);
@setEvalBranchQuota(10000);
return comptime blk: {
var buf: [json.len]u8 = undefined;
var len: usize = 0;