aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/environments
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/environments')
-rw-r--r--client/src/environments/environment.e2e.ts5
-rw-r--r--client/src/environments/environment.hmr.ts5
-rw-r--r--client/src/environments/environment.ts2
3 files changed, 11 insertions, 1 deletions
diff --git a/client/src/environments/environment.e2e.ts b/client/src/environments/environment.e2e.ts
new file mode 100644
index 000000000..7c00e8d4f
--- /dev/null
+++ b/client/src/environments/environment.e2e.ts
@@ -0,0 +1,5 @@
1export const environment = {
2 production: false,
3 hmr: false,
4 apiUrl: 'http://localhost:9001'
5}
diff --git a/client/src/environments/environment.hmr.ts b/client/src/environments/environment.hmr.ts
new file mode 100644
index 000000000..20e2b8fcd
--- /dev/null
+++ b/client/src/environments/environment.hmr.ts
@@ -0,0 +1,5 @@
1export const environment = {
2 production: false,
3 hmr: true,
4 apiUrl: 'http://localhost:9000'
5}
diff --git a/client/src/environments/environment.ts b/client/src/environments/environment.ts
index 364da6745..5bb6f4b34 100644
--- a/client/src/environments/environment.ts
+++ b/client/src/environments/environment.ts
@@ -4,6 +4,6 @@
4 4
5export const environment = { 5export const environment = {
6 production: false, 6 production: false,
7 hmr: true, 7 hmr: false,
8 apiUrl: 'http://localhost:9000' 8 apiUrl: 'http://localhost:9000'
9} 9}