mirror of
https://github.com/danbee/my-images
synced 2025-03-04 08:49:05 +00:00
10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
import { Application } from "@hotwired/stimulus"
|
|
|
|
const application = Application.start()
|
|
|
|
// Configure Stimulus development experience
|
|
application.debug = true
|
|
window.Stimulus = application
|
|
|
|
export { application }
|