summaryrefslogtreecommitdiffhomepage
path: root/frontend/index.html
diff options
context:
space:
mode:
authorLiang Yi <[email protected]>2022-03-16 14:26:15 +0800
committerGitHub <[email protected]>2022-03-16 14:26:15 +0800
commit50a252fdd7e5652d344e9f1eb82ff755d55fe8a5 (patch)
tree204a1fd629f29e1be7e987820b3f829f4c54377d /frontend/index.html
parentf81972b291b73f5771c40359f18d6470b23e2650 (diff)
downloadbazarr-50a252fdd7e5652d344e9f1eb82ff755d55fe8a5.tar.gz
bazarr-50a252fdd7e5652d344e9f1eb82ff755d55fe8a5.zip
Frontend improvement and cleanup (#1690)
* Replace Create-React-App with Vite.js * Update React-Router to v6 * Cleanup unused codes
Diffstat (limited to 'frontend/index.html')
-rw-r--r--frontend/index.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/index.html b/frontend/index.html
new file mode 100644
index 000000000..7811ee654
--- /dev/null
+++ b/frontend/index.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>Bazarr</title>
+ <base href="{{baseUrl}}" />
+ <meta charset="utf-8" />
+ <link rel="icon" type="image/x-icon" href="./static/favicon.ico" />
+ <meta
+ name="viewport"
+ content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"
+ />
+ <meta
+ name="description"
+ content="Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you."
+ />
+ </head>
+ <body>
+ <noscript>You need to enable JavaScript to run this app.</noscript>
+ <div id="root"></div>
+ <script>
+ window.Bazarr = {{BAZARR_SERVER_INJECT | tojson | safe}};
+ </script>
+ <script type="module" src="./src/index.tsx"></script>
+ </body>
+</html>