metadata loaders as svelte stream

This commit is contained in:
Jan Prochazka
2021-02-20 17:47:48 +01:00
parent 40ed020c0a
commit 9743569ca7
12 changed files with 522 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
export default function resolveApi() {
if (window['require']) {
const electron = window['require']('electron');
if (electron) {
const port = electron.remote.getGlobal('port');
if (port) {
return `http://localhost:${port}`;
}
}
}
// // eslint-disable-next-line
// const apiUrl = process.env.REACT_APP_API_URL;
// if (apiUrl) {
// if (apiUrl == 'ORIGIN') return window.location.origin;
// return apiUrl;
// }
return 'http://localhost:3000';
}