// Main Stimulus application controller // Initializes the Stimulus framework and makes it available globally import { Application } from "@hotwired/stimulus"; // Create and start the Stimulus application const application = Application.start(); // Configure Stimulus development experience // Set to false in production to avoid unnecessary logging application.debug = false; // Make Stimulus globally available for debugging purposes window.Stimulus = application; // Configure Alpine js (commented out as it's not currently used) // import Alpine from "alpinejs"; // window.Alpine = Alpine; // Alpine.start(); export { application };