add environments and configuration.service.ts for admin
This commit is contained in:
5
admin/src/environments/environment.development.ts
Normal file
5
admin/src/environments/environment.development.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { AppConfig } from '../types';
|
||||
|
||||
export const environment: AppConfig = {
|
||||
apiUrl: 'http://localhost:4200/api'
|
||||
};
|
||||
5
admin/src/environments/environment.production.ts
Normal file
5
admin/src/environments/environment.production.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { AppConfig } from '../types';
|
||||
|
||||
export const environment: AppConfig = {
|
||||
apiUrl: 'http://localhost:4200/api'
|
||||
};
|
||||
5
admin/src/environments/environment.ts
Normal file
5
admin/src/environments/environment.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { AppConfig } from '../types';
|
||||
|
||||
export const environment: AppConfig = {
|
||||
apiUrl: 'http://localhost:4200/api'
|
||||
};
|
||||
Reference in New Issue
Block a user