We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e80ff7 commit 46e5ff7Copy full SHA for 46e5ff7
src/reactpy_django/http/views.py
@@ -37,6 +37,8 @@ async def web_modules_file(request: HttpRequest, file: str) -> HttpResponse:
37
await caches[REACTPY_CACHE].aset(
38
cache_key, file_contents, timeout=604800, version=int(last_modified_time)
39
)
40
+
41
+ # TODO: Convert this to a StreamingHttpResponse
42
return HttpResponse(file_contents, content_type="text/javascript")
43
44
0 commit comments