- Separate file to import jquery and bootstrap - Remove separate jquery bundle from app as well as web - Load jquery from node_modules
14 lines
532 B
JavaScript
14 lines
532 B
JavaScript
import "./jquery-bootstrap";
|
|
import Vue from "vue/dist/vue.esm.js";
|
|
import moment from "moment/min/moment-with-locales.js";
|
|
import momentTimezone from "moment-timezone/builds/moment-timezone-with-data.js";
|
|
import "socket.io-client/dist/socket.io.slim.js";
|
|
import Sortable from "./lib/Sortable.min.js";
|
|
// TODO: esbuild
|
|
// Don't think jquery.hotkeys is being used anywhere. Will remove this after being sure.
|
|
// import "./lib/jquery/jquery.hotkeys.js";
|
|
|
|
|
|
window.moment = momentTimezone;
|
|
window.Vue = Vue;
|
|
window.Sortable = Sortable;
|