fix: document electron module mapping and add native rebuild helper

This commit is contained in:
Pandipipas
2026-02-10 14:35:10 +01:00
parent ccbb744a41
commit a3ecbbe7b0
9 changed files with 6330 additions and 0 deletions
+61
View File
@@ -0,0 +1,61 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Scoreko</title>
<style>
:root {
color-scheme: dark;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background: #0f0f0f;
color: #d6d6d6;
}
.card {
text-align: center;
}
.title {
font-size: 24px;
font-weight: 700;
letter-spacing: 0.02em;
}
.subtitle {
margin-top: 8px;
color: #9a9a9a;
}
.spinner {
margin: 24px auto 0;
width: 30px;
aspect-ratio: 1;
border: 3px solid #2f2f2f;
border-top-color: #3b82f6;
border-radius: 50%;
animation: spin 0.9s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="card">
<div class="title">Scoreko</div>
<div class="subtitle">Inicializando NodeCG y dashboard…</div>
<div class="spinner" aria-hidden="true"></div>
</div>
</body>
</html>