chore: état initial avant refonte (atlas SvelteKit v4.0.0)

Snapshot de l'existant avant application du playbook OKI :
background shader Three.js, carte graphe 3D, timeline statique.
This commit is contained in:
sucupira
2026-07-21 13:10:12 -04:00
commit 93c577c5d3
80 changed files with 54745 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
/* Diagnostic de démarrage — script classique externe (compatible CSP « script-src 'self' »).
Affiche le bandeau #boot-warning si l'app SvelteKit n'a pas démarré après 8 s
(modules bloqués, ex. ouverture en file:// ou déploiement incomplet). */
window.setTimeout(function () {
if (!document.documentElement.dataset.js) {
var warning = document.getElementById('boot-warning');
if (warning) warning.hidden = false;
}
}, 8000);