- fix catch-all routes not working in dev server

- fix crash
- fix require bug
This commit is contained in:
Zack Radisic
2025-07-27 18:31:01 -07:00
parent 68be15361a
commit 740cdaba3d
8 changed files with 128 additions and 13 deletions

View File

@@ -1232,7 +1232,7 @@ fn onFrameworkRequestWithBundle(
const value_str = bun.String.cloneUTF8(param.value);
defer value_str.deref();
obj.put(global, key_str, value_str.toJS(global));
_ = try obj.putBunStringOneOrArray(global, &key_str, value_str.toJS(global));
}
break :blk obj;
} else JSValue.null;