- Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
16 lines (15 loc) · 544 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<metacharset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<metahttp-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<metahttp-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
</head>
<body>
<h1>Splash Screen</h1>
<!-- You can also require other files to run in this process -->
<scriptsrc="./renderer.js"></script>
</body>
</html>