-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
28 lines (26 loc) · 780 Bytes
/
settings.html
File metadata and controls
28 lines (26 loc) · 780 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self' data:"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self' data:"
/>
<link
rel="preload"
href="/node_modules/@fontsource-variable/inter/files/inter-latin-wght-normal.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<title>Electron Agent</title>
</head>
<body>
<div id="settings"></div>
<script type="module" src="/src/settings/renderer/renderer.ts"></script>
</body>
</html>