environmentConfig.ts 165 Bytes
Newer Older
Ken's avatar
Ken committed
1 2
const enviromentConfig = {
  development: {
Ken's avatar
Ken committed
3
    endPoint: "https://localhost:5001",
Ken's avatar
Ken committed
4 5 6 7 8 9 10
  },
  production: {
    endPoint: "",
  },
};

export default enviromentConfig;