fix: respect environment variable in url before adding protocol - resolved #2084

This commit is contained in:
liyasthomas
2022-01-24 22:51:41 +05:30
parent 78693964d8
commit ee6d173033
2 changed files with 5 additions and 1 deletions

View File

@@ -348,7 +348,10 @@ const newSendRequest = async () => {
}
const ensureMethodInEndpoint = () => {
if (!/^http[s]?:\/\//.test(newEndpoint.value)) {
if (
!/^http[s]?:\/\//.test(newEndpoint.value) &&
!newEndpoint.value.startsWith("<<")
) {
const domain = newEndpoint.value.split(/[/:#?]+/)[0]
if (domain === "localhost" || /([0-9]+\.)*[0-9]/.test(domain)) {
setRESTEndpoint("http://" + newEndpoint.value)

View File

@@ -1,3 +1,4 @@
/* eslint-disable import/export */
// workaround for Volar to infer the ref type in <template>
// https://github.com/johnsoncodehk/volar/issues/404
declare module "@vue/runtime-dom" {