Skip to content
Snippets Groups Projects
Commit c7054936 authored by Georg Krause's avatar Georg Krause Committed by Georg Krause
Browse files

fix(spa manifest): Set correct mime type for endpoint

parent c619387a
Branches
No related tags found
No related merge requests found
...@@ -140,4 +140,6 @@ class SpaManifest(generics.GenericAPIView): ...@@ -140,4 +140,6 @@ class SpaManifest(generics.GenericAPIView):
if instance_description: if instance_description:
parsed_manifest["description"] = instance_description parsed_manifest["description"] = instance_description
serializer = self.get_serializer(parsed_manifest) serializer = self.get_serializer(parsed_manifest)
return Response(serializer.data, status=200) return Response(
serializer.data, status=200, content_type="application/manifest+json"
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment