/** * script.mts * * Early initialization script for the space-gib SPA. * Runs as soon as the HTML is parsed (before DOMContentLoaded). */ console.log('space-gib early script executing...'); import { getSpaceGibShellSvc } from "./ui/shell/space-gib-shell-service.mjs"; // Initialize the UI shell singleton getSpaceGibShellSvc();