[docker] allow source maps to be downloaded

This commit is contained in:
Shish 2024-01-01 15:48:33 +00:00
parent 87fea055b1
commit 7563576557

View file

@ -35,6 +35,7 @@
"image/*", "image/*",
"application/javascript", "application/javascript",
"text/css", "text/css",
"application/sourcemap",
"!" "!"
], ],
"response_headers": { "response_headers": {
@ -69,7 +70,12 @@
}, },
"settings": { "settings": {
"http": { "http": {
"max_body_size": 1048576000 "max_body_size": 1048576000,
"static": {
"mime_types": {
"application/sourcemap": [".map"]
}
}
} }
} }
} }