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.

18 lines
500 B

8 months ago
9 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
3 months ago
  1. // Turbo
  2. import "@hotwired/turbo-rails"
  3. Turbo.setProgressBarDelay(300)
  4. // Toastify
  5. import Toastify from 'toastify-js'
  6. window.Toastify = Toastify
  7. // Js Controllers
  8. import "controllers"
  9. // Font Awesome
  10. import { far } from "@fortawesome/free-regular-svg-icons"
  11. import { fas } from "@fortawesome/free-solid-svg-icons"
  12. import { fab } from "@fortawesome/free-brands-svg-icons"
  13. import { library } from "@fortawesome/fontawesome-svg-core"
  14. import "@fortawesome/fontawesome-free"
  15. library.add(far, fas, fab)