Make raw.githubusercontent.com work for css imports

main
Vendicated 2 years ago
parent 71a60a0359
commit d0940a8b19
No known key found for this signature in database
GPG Key ID: EC781ADFB93EFFA3

@ -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 });
});

Loading…
Cancel
Save