[docker] allow source maps to be downloaded
This commit is contained in:
parent
87fea055b1
commit
7563576557
1 changed files with 7 additions and 1 deletions
|
@ -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"]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue