0👍
✅
You’re mixing using global scope JS (setting a property on window) in your config file with module style JS in your sendDataToBackEnd.js
file (importing and exporting from modules).
You either need to export something from config (best option if you’re using modules), or just access it from the window.
backendURLconfig.js
const config = {
urlBackend: `http://localhost:8090/api/auth/event`,
}
export default config
sendDataToBackEnd.js
import config from '../config/backendURLconfig';
var backEndUrl = config.urlBackend;
console.log(backEndUrl)
const sendDatatoBackEnd = {}
vuePlugin.install = function (Vue){
{Method to send Data to my Backend}
}
export default sendDatatoBackEnd;
Source:stackexchange.com