environment.ts 1.1 KB

123456789101112131415161718192021222324252627282930
  1. // This file can be replaced during build by using the `fileReplacements` array.
  2. // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
  3. // The list of file replacements can be found in `angular.json`.
  4. export const environment = {
  5. production: false,
  6. apiUrl: "https://api.inverlec.solar",
  7. //productionApiUrl: 'http://192.168.98.10:8888/api/v1',
  8. productionApiUrl: "http://192.168.98.140:5000/api/v1",
  9. //productionApiUrl: "https://denmark.inverlec.solar/api/v1",
  10. appID: "55899b9ea53834f2736b65a3582b734b",
  11. gKey: "",
  12. config: {
  13. apiKey: "",
  14. authDomain: "",
  15. databaseURL: "",
  16. projectId: "",
  17. storageBucket: "",
  18. messagingSenderId: "",
  19. },
  20. };
  21. /*
  22. * For easier debugging in development mode, you can import the following file
  23. * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
  24. *
  25. * This import should be commented out in production mode because it will have a negative impact
  26. * on performance if an error is thrown.
  27. */
  28. // import 'zone.js/dist/zone-error'; // Included with Angular CLI.