function getStationSrc(url) {
|
let src = "";
|
if (process.env.NODE_ENV == 'dev') {
|
src = "http://localhost:8920/stationsrc";
|
} else {
|
src = window.location.origin + "/stationsrc";
|
}
|
let result = url.replace(/.*stationsrc/, src);
|
return result;
|
}
|
export default getStationSrc;
|