forked from bhi10/lit-movies
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
54 lines (45 loc) · 1.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TMDB</title>
<!-- Preload initial API data -->
<link rel="preload" as="fetch" href="https://api.themoviedb.org/3/movie/popular?api_key=6b773e1f59009e9d5efc06c47c2ccd9c&page=undefined&language=en-US" crossorigin="anonymous">
<!-- Preload scripts -->
<link rel="modulepreload" href="./src/tmdb-app.js">
<script type="module" src="./src/tmdb-app.js"></script>
<link rel="manifest" href="/manifest.json">
<link rel="shortcut icon" href="src/img/favicon/favicon.ico" type="image/x-icon" />
<style>
:root{
--drawer-width: 256px;
--drawer-open-time: 0.4s;
/* --mdc-icon-font: 'Material Icons Outlined'; */
}
body{
display: flex;
width: 100%;
min-height: 100vh;
margin: 0;
font-family: 'Source Sans Pro', Arial, sans-serif;
}
</style>
</head>
<body>
<tmdb-app></tmdb-app>
<script>
window.process = {
env: {
NODE_ENV: 'production',
envName: 'test',
baseDomain: 'themoviedb.org/3',
apiKey: '6b773e1f59009e9d5efc06c47c2ccd9c',
apiImageUrl: 'https://image.tmdb.org/t/p',
version: '1.0.0'
}
};
</script>
<!-- <script src="/src/app.js"></script> -->
</body>
</html>