You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
347 B

import "@hotwired/turbo-rails"
import { Application } from "@hotwired/stimulus"
import LocaleController from "locale_controller"
const application = Application.start()
application.register("locale", LocaleController)
// Configure Stimulus development experience
application.debug = false
window.Stimulus = application
export { application }