Skip to content

Commit 8ac4f71

Browse files
committed
feat: add production flag to environment configurations
1 parent 6db3e20 commit 8ac4f71

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Environment } from './environment.types'
22

33
export const environment: Environment = {
4+
production: false,
45
api: 'http://localhost:3600',
56
}

src/environments/environment.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Environment } from './environment.types'
22

33
export const environment: Environment = {
4+
production: true,
45
api: 'api',
56
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
export interface Environment {
2+
production: boolean;
23
api: string
34
}

0 commit comments

Comments
 (0)