diff options
author | Chocobozzz <me@florianbigard.com> | 2020-07-10 11:13:41 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-07-10 11:13:41 +0200 |
commit | 72493e44e9b455a04c4f093ed6c6ffa300b98d8b (patch) | |
tree | fc39d2b119ffbbf76339cf1dc2a9bd160c35c304 /client/src/environments | |
parent | 1fdf8edb77008133e80e5ab8e846b7f8fdfecf12 (diff) | |
download | PeerTube-72493e44e9b455a04c4f093ed6c6ffa300b98d8b.tar.gz PeerTube-72493e44e9b455a04c4f093ed6c6ffa300b98d8b.tar.zst PeerTube-72493e44e9b455a04c4f093ed6c6ffa300b98d8b.zip |
Fix embed url
Diffstat (limited to 'client/src/environments')
-rw-r--r-- | client/src/environments/environment.e2e.ts | 2 | ||||
-rw-r--r-- | client/src/environments/environment.hmr.ts | 2 | ||||
-rw-r--r-- | client/src/environments/environment.prod.ts | 2 | ||||
-rw-r--r-- | client/src/environments/environment.ts | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/client/src/environments/environment.e2e.ts b/client/src/environments/environment.e2e.ts index 7724d27c9..b33ff9f86 100644 --- a/client/src/environments/environment.e2e.ts +++ b/client/src/environments/environment.e2e.ts | |||
@@ -2,5 +2,5 @@ export const environment = { | |||
2 | production: false, | 2 | production: false, |
3 | hmr: false, | 3 | hmr: false, |
4 | apiUrl: 'http://localhost:9001', | 4 | apiUrl: 'http://localhost:9001', |
5 | embedUrl: 'http://localhost:9001/videos/embed' | 5 | embedUrl: 'http://localhost:9001' |
6 | } | 6 | } |
diff --git a/client/src/environments/environment.hmr.ts b/client/src/environments/environment.hmr.ts index 72eed45e5..3b6eff302 100644 --- a/client/src/environments/environment.hmr.ts +++ b/client/src/environments/environment.hmr.ts | |||
@@ -2,5 +2,5 @@ export const environment = { | |||
2 | production: false, | 2 | production: false, |
3 | hmr: true, | 3 | hmr: true, |
4 | apiUrl: '', | 4 | apiUrl: '', |
5 | embedUrl: 'http://localhost:9000/videos/embed' | 5 | embedUrl: 'http://localhost:9000' |
6 | } | 6 | } |
diff --git a/client/src/environments/environment.prod.ts b/client/src/environments/environment.prod.ts index 368aa1389..2e9b9fefe 100644 --- a/client/src/environments/environment.prod.ts +++ b/client/src/environments/environment.prod.ts | |||
@@ -2,5 +2,5 @@ export const environment = { | |||
2 | production: true, | 2 | production: true, |
3 | hmr: false, | 3 | hmr: false, |
4 | apiUrl: '', | 4 | apiUrl: '', |
5 | embedUrl: '/videos/embed' | 5 | embedUrl: '' |
6 | } | 6 | } |
diff --git a/client/src/environments/environment.ts b/client/src/environments/environment.ts index 60f5d9450..4816e3060 100644 --- a/client/src/environments/environment.ts +++ b/client/src/environments/environment.ts | |||
@@ -12,5 +12,5 @@ export const environment = { | |||
12 | production: false, | 12 | production: false, |
13 | hmr: false, | 13 | hmr: false, |
14 | apiUrl: 'http://localhost:9000', | 14 | apiUrl: 'http://localhost:9000', |
15 | embedUrl: 'http://localhost:9000/videos/embed' | 15 | embedUrl: 'http://localhost:9000' |
16 | } | 16 | } |