18 lines
709 B
HTML
18 lines
709 B
HTML
<!doctype html>
|
||
<html lang="es">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<meta name="theme-color" content="#0d9488" /> <!-- color principal de la app -->
|
||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||
<title>Núcleo App</title>
|
||
<!-- Si luego querés PWA, activá el manifest -->
|
||
<!-- <link rel="manifest" href="/manifest.webmanifest" /> -->
|
||
</head>
|
||
<body class="min-h-screen flex flex-col bg-gray-100 text-gray-900 antialiased">
|
||
<div id="app" class="flex-1 flex flex-col"></div>
|
||
<script src="/config.js"></script>
|
||
<script type="module" src="/src/main.js"></script>
|
||
</body>
|
||
</html>
|