We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27b0196 commit d4f231dCopy full SHA for d4f231d
1 file changed
src/corsProxies.js
@@ -5,7 +5,7 @@ export const corsProxies = [
5
const match = targetUrl.match(/^https?:\/\/(.+)$/);
6
if (!match) throw new Error("Invalid URL for proxy");
7
const [, hostAndPath] = match;
8
- return `https://cors.materialscloud.org/https/${hostAndPath}`;
+ return `https://cors.materialscloud.org/https://${hostAndPath}`;
9
},
10
// },
11
// {
0 commit comments