This commit is contained in:
Frank
2026-01-02 20:27:56 +01:00
parent 3b071eec9b
commit 18821e2463
43 changed files with 12259 additions and 2910 deletions
+11
View File
@@ -0,0 +1,11 @@
/* Game1 entry point built with Webpack Encore */
import './styles/game1.css';
document.addEventListener('DOMContentLoaded', () => {
// Simple boot log so you can verify it in the browser console
// and confirm this specific bundle is loaded on the Game Hub page.
console.log('Game1 bundle loaded');
// Example: add a CSS class to <body> so page-specific styles can apply
document.body.classList.add('game1-page');
});