Donovan Daniels
b1c702e3cd
poorly tested but it worked well enough, I'm sure I'll be patching bugs over the next few weeks Also remove turbo because it sucks Also changed the way we handle hosts in dev
14 lines
397 B
TypeScript
14 lines
397 B
TypeScript
/// <reference path="./@types/global.d.ts" />
|
|
// Entry point for the build script in your package.json
|
|
import "bootstrap";
|
|
import "bootstrap/dist/css/bootstrap.min.css";
|
|
import jQuery from "jquery";
|
|
window.jQuery = window.$ = jQuery;
|
|
import Rails from "@rails/ujs";
|
|
import "jquery-ujs";
|
|
import "./ujs-prompt.js"
|
|
import "./controllers/index.js";
|
|
import "./styles/application.scss";
|
|
|
|
Rails.start();
|