mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-04 15:04:21 +01:00
17 lines
494 B
HTML
17 lines
494 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"
|
|
/>
|
|
<link href="/src/index.css" rel="stylesheet" />
|
|
<title>Goose v2</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html> |