diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-11-04 12:50:01 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-11-04 12:50:01 +0100 |
commit | 4d19d2f10b691650abe030d0dbb52dc7c8a62441 (patch) | |
tree | 2ec321237cb4c43948848418bc114559e0cc1ffe /client/src/index.html | |
parent | d05eb4ed10db5737173946cc15b1193ce498529b (diff) | |
download | PeerTube-4d19d2f10b691650abe030d0dbb52dc7c8a62441.tar.gz PeerTube-4d19d2f10b691650abe030d0dbb52dc7c8a62441.tar.zst PeerTube-4d19d2f10b691650abe030d0dbb52dc7c8a62441.zip |
Update to webpack beta 25
Diffstat (limited to 'client/src/index.html')
-rw-r--r-- | client/src/index.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/client/src/index.html b/client/src/index.html index f39d8d2cf..7ae8fc54f 100644 --- a/client/src/index.html +++ b/client/src/index.html | |||
@@ -1,9 +1,7 @@ | |||
1 | <!DOCTYPE html> | 1 | <!DOCTYPE html> |
2 | <html> | 2 | <html> |
3 | <head> | 3 | <head> |
4 | <base href="/"> | 4 | <title><%= htmlWebpackPlugin.options.title %></title> |
5 | |||
6 | <title>PeerTube</title> | ||
7 | 5 | ||
8 | <meta charset="UTF-8"> | 6 | <meta charset="UTF-8"> |
9 | <meta name="viewport" content="width=device-width, initial-scale=1"> | 7 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
@@ -12,11 +10,16 @@ | |||
12 | 10 | ||
13 | <!-- TODO: bundle it with webpack when https://github.com/webpack/webpack/pull/1931 will be merged --> | 11 | <!-- TODO: bundle it with webpack when https://github.com/webpack/webpack/pull/1931 will be merged --> |
14 | <script src="/client/assets/webtorrent/webtorrent.min.js"></script> | 12 | <script src="/client/assets/webtorrent/webtorrent.min.js"></script> |
13 | |||
14 | <!-- base url --> | ||
15 | <base href="<%= htmlWebpackPlugin.options.metadata.baseUrl %>"> | ||
15 | </head> | 16 | </head> |
16 | 17 | ||
17 | <!-- 3. Display the application --> | 18 | <!-- 3. Display the application --> |
18 | <body> | 19 | <body> |
20 | |||
19 | <my-app> | 21 | <my-app> |
20 | </my-app> | 22 | </my-app> |
23 | |||
21 | </body> | 24 | </body> |
22 | </html> | 25 | </html> |