Frontend rewritten in TypeScript, added Node 18 support

This commit is contained in:
Igor Lobanov
2024-06-05 11:40:32 +02:00
parent 4392255d7e
commit 2ab738b303
301 changed files with 32512 additions and 33018 deletions

View File

@@ -23,7 +23,6 @@ import (
"golang.org/x/net/http2/h2c"
)
// TODO(a.garipov): Make configurable.
const (
// readTimeout is the maximum duration for reading the entire request,
// including the body.
@@ -32,7 +31,7 @@ const (
readHdrTimeout = 60 * time.Second
// writeTimeout is the maximum duration before timing out writes of the
// response.
writeTimeout = 5 * time.Minute
writeTimeout = 60 * time.Second
)
type webConfig struct {