We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8858a5e commit e81d545Copy full SHA for e81d545
src/components/Main.vue
@@ -103,9 +103,13 @@ export default {
103
104
this.changeProgress(100);
105
106
+ const requestURL = window.location.origin.includes("localhost") ?
107
+ "http://localhost:5001/deobfuscator/us-central1/api/request" :
108
+ "https://us-central1-deobfuscator.cloudfunctions.net/api/request";
109
+
110
this.axios
111
.post(
- "https://us-central1-deobfuscator.cloudfunctions.net/api/request",
112
+ requestURL,
113
{
114
targetName: this.targetName,
115
code: this.mainCode,
0 commit comments