- docker-entrypoint.sh (backend/frontend) y auth-mode.sh normalizados a LF (CRLF rompía el shebang dentro de los contenedores Linux) - .gitattributes fuerza LF en *.sh - Títulos HTML (app.html / index.html) → "CRM — Aduanasoft" - .gitignore: docker-compose.override.yml Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
719 B
HTML
23 lines
719 B
HTML
<!doctype html>
|
|
<html lang="%paraglide.lang%">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>CRM — Aduanasoft</title>
|
|
<meta name="description" content="Plataforma SaaS para gestión de comercio exterior conforme a Anexos 24, 30 y 22 del SAT" />
|
|
<script>
|
|
// Cargar el tema antes de renderizar para evitar flash
|
|
(function() {
|
|
const theme = localStorage.getItem('theme') || 'dark';
|
|
if (theme === 'dark') {
|
|
document.documentElement.classList.add('dark');
|
|
}
|
|
})();
|
|
</script>
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|