Reduce max_bytes_request_body

This commit is contained in:
mitteneer 2024-11-30 23:22:17 -05:00
parent 9695202cfe
commit 139c249497
4 changed files with 14 additions and 4 deletions

View file

@ -29,7 +29,7 @@ pub fn build(b: *std.Build) !void {
run_step.dependOn(&run_cmd.step);
const lib_unit_tests = b.addTest(.{
.root_source_file = b.path("src/main.zig"),
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
@ -37,7 +37,7 @@ pub fn build(b: *std.Build) !void {
const run_lib_unit_tests = b.addRunArtifact(lib_unit_tests);
const exe_unit_tests = b.addTest(.{
.root_source_file = b.path("src/main.zig"),
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});