mirror of
https://github.com/czhu12/canine.git
synced 2025-12-17 00:44:33 -06:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
import { Application } from "@hotwired/stimulus"
|
|
|
|
const application = Application.start()
|
|
|
|
// Configure Stimulus development experience
|
|
application.debug = false
|
|
window.Stimulus = application
|
|
|
|
export { application }
|