-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
23 lines (23 loc) · 858 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SkinKK</title>
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
</head>
<body>
<div id="root"></div>
</body>
<script src="https://cdn.ravenjs.com/3.26.2/raven.min.js"
crossorigin="anonymous"></script>
<script>
// This will start catching errors and report them to sentry
Raven.config('https://40fee50268a04b8294b4316f52fac1e6@sentry.io/1227508').install();
</script>
<script>
// You can also require other files to run in this process
require('./app/renderer.js')
</script>
</html>