30 lines
804 B
HTML
30 lines
804 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="PeerTube, a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser" />
|
|
|
|
<!-- The following comment is used by the server to prerender OpenGraph tags -->
|
|
<!-- opengraph tags -->
|
|
<!-- Do not remove it! -->
|
|
|
|
<link rel="icon" type="image/png" href="/client/assets/favicon.png" />
|
|
|
|
<!-- base url -->
|
|
<base href="<%= htmlWebpackPlugin.options.metadata.baseUrl %>">
|
|
|
|
<%= htmlWebpackPlugin.files.webpackManifest %>
|
|
</head>
|
|
|
|
<!-- 3. Display the application -->
|
|
<body>
|
|
|
|
<my-app>
|
|
</my-app>
|
|
|
|
</body>
|
|
</html>
|