Make raw.githubusercontent.com work for css imports

This commit is contained in:
Vendicated 2022-09-25 17:45:59 +02:00
parent 71a60a0359
commit d0940a8b19
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3

View file

@ -57,6 +57,11 @@ electron.app.whenReady().then(() => {
if (responseHeaders) {
delete responseHeaders["content-security-policy-report-only"];
delete responseHeaders["content-security-policy"];
// Fix hosts that don't properly set the content type, such as
// raw.githubusercontent.com
if (url.endsWith(".css"))
responseHeaders["content-type"] = ["text/css"];
}
cb({ cancel: false, responseHeaders });
});