fix: bump WASM raw size limit to 3.5MB for Go 1.26 runtime growth
All checks were successful
Security Scan / security (push) Successful in 15s
Test / test (push) Successful in 2m47s

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Snider 2026-02-23 07:59:46 +00:00
parent 95d83f52b3
commit 3ea5041375

View file

@ -17,7 +17,7 @@ import (
const (
wasmGzLimit = 1_048_576 // 1 MB gzip transfer size limit
wasmRawLimit = 3_145_728 // 3 MB raw size limit
wasmRawLimit = 3_670_016 // 3.5 MB raw size limit
)
func TestWASMBinarySize_Good(t *testing.T) {