-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
36 lines (35 loc) · 1.64 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<base href="/ui/" />
<title>PDND Interoperabilità | PagoPA</title>
<meta
name="description"
content="La piattaforma che abilita lo scambio di informazioni tra gli enti"
/>
<meta name="theme-color" content="#00a1b0" />
<link rel="manifest" href="./manifest.webmanifest" crossorigin="anonymous" />
<link rel="icon" href="./favicon-32x32.png" type="image/png" />
<link rel="icon" href="./favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" sizes="48x48" href="./icons/icon-48x48.png" />
<link rel="apple-touch-icon" sizes="72x72" href="./icons/icon-72x72.png" />
<link rel="apple-touch-icon" sizes="96x96" href="./icons/icon-96x96.png" />
<link rel="apple-touch-icon" sizes="144x144" href="./icons/icon-144x144.png" />
<link rel="apple-touch-icon" sizes="192x192" href="./icons/icon-192x192.png" />
<link rel="apple-touch-icon" sizes="256x256" href="./icons/icon-256x256.png" />
<link rel="apple-touch-icon" sizes="384x384" href="./icons/icon-384x384.png" />
<link rel="apple-touch-icon" sizes="512x512" href="./icons/icon-512x512.png" />
<script nonce="**CSP_NONCE**" src="./env.js"></script>
<script nonce="**CSP_NONCE**">
window.nonce = '**CSP_NONCE**'
</script>
</head>
<body>
<noscript>Abilita JavaScript per utilizzare quest'applicazione</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>