Make raw.githubusercontent.com work for css imports
This commit is contained in:
parent
71a60a0359
commit
d0940a8b19
@ -57,6 +57,11 @@ electron.app.whenReady().then(() => {
|
|||||||
if (responseHeaders) {
|
if (responseHeaders) {
|
||||||
delete responseHeaders["content-security-policy-report-only"];
|
delete responseHeaders["content-security-policy-report-only"];
|
||||||
delete responseHeaders["content-security-policy"];
|
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 });
|
cb({ cancel: false, responseHeaders });
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user