legacy/pairent_frontend_react/src/constants.js

12 lines
223 B
JavaScript
Raw Normal View History

2023-05-05 09:55:40 +02:00
/**
* Api root path
* @type {string}
*/
const API_ROOT =
window.location.protocol +
import.meta.env.DEV ?
'//127.0.0.1:8000' :
'//pairent.vvsu.ru';
module.exports = Object.freeze({ API_ROOT });