- Added `https://cdn.jsdelivr.net` to the `connect-src` directive in both Content-Security-Policy and X-Content-Security-Policy headers to allow connections to the CDN. - Removed the duplicate Content-Security-Policy meta tag from the frontend/index.html file to avoid redundancy and potential conflicts.
52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en" class="notranslate" translate="no">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#23282f" />
|
|
|
|
<!-- Geologica -->
|
|
<link
|
|
rel="preload"
|
|
as="font"
|
|
href="/fonts/Geologica/SemiBold/GeologicaSemiBold.ttf"
|
|
type="font/ttf"
|
|
crossorigin="anonymous"
|
|
/>
|
|
|
|
<!-- Nunito -->
|
|
<link
|
|
rel="preload"
|
|
as="font"
|
|
href="/fonts/Nunito/SemiBold/NunitoSemiBold.ttf"
|
|
type="font/ttf"
|
|
crossorigin="anonymous"
|
|
/>
|
|
|
|
<link
|
|
rel="preload"
|
|
as="font"
|
|
href="/fonts/Nunito/Regular/NunitoRegular.ttf"
|
|
type="font/ttf"
|
|
crossorigin="anonymous"
|
|
/>
|
|
|
|
<!-- Roboto -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="/favicons/favicon.png" />
|
|
</head>
|
|
<body>
|
|
<noscript>Please, enable JavaScript in your browser to run the app.</noscript>
|
|
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/index.tsx"></script>
|
|
</body>
|
|
</html>
|