seitime-frappe/frappe/public/js/libs.bundle.js
marination 3f6eb5d99d fix: Load moment and bind to window from new file
- Introduce new file in `/lib` to import moment and bind to window
- Use new lib file to load moment in web bundle and libs bundle (desk)

Co-authored-by: Suraj Shetty <surajshetty3416@gmail.com>
2022-02-02 20:43:01 +05:30

12 lines
408 B
JavaScript

import "./jquery-bootstrap";
import Vue from "vue/dist/vue.esm.js";
import "./lib/moment";
import io from "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.Vue = Vue;
window.Sortable = Sortable;
window.io = io;