1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vweb: remove chunked encoding support in server responses (#10750)

This commit is contained in:
Miccah
2021-07-13 07:47:16 -05:00
committed by GitHub
parent ee00d80931
commit c3c420a41c
4 changed files with 1 additions and 47 deletions

View File

@ -40,7 +40,6 @@ pub fn (mut app App) index() vweb.Result {
show := true
hello := 'Hello world from vweb'
numbers := [1, 2, 3]
app.enable_chunked_transfer(40)
return $vweb.html()
}