Apologies for my poor English skills.
The contents of the .env file are as follows:
VUE_APP_REST_API_URL=http://192.168.1.57:8080/rest/web
VUE_APP_RESOURCE_LOGIN=token
Within the Login.vue component, the code is as shown below:
const url = path.join (process.env.VUE_APP_REST_API_URL, process.env.VUE_APP_RESOURCE_LOGIN);
console.log (url);
this.axios.post(url, formdata)
Upon executing the console.log command, the following output is displayed: Login.vue? 7463: 95 http:/192.168.1.57:8080/rest/web/token Why has one of the two slashes been removed? Could it be due to URL escaping?