28 lines
703 B
JavaScript
28 lines
703 B
JavaScript
// We need to import the CSS so that webpack will load it.
|
|
// The MiniCssExtractPlugin is used to separate it out into
|
|
// its own CSS file.
|
|
import "../css/app.scss"
|
|
|
|
// webpack automatically bundles all modules in your
|
|
// entry points. Those entry points can be configured
|
|
// in "webpack.config.js".
|
|
//
|
|
// Import deps with the dep name or local files with a relative path, for example:
|
|
//
|
|
// import {Socket} from "phoenix"
|
|
// import socket from "./socket"
|
|
//
|
|
import "phoenix_html";
|
|
import "jquery";
|
|
import $ from 'jquery';
|
|
window.jQuery = $;
|
|
window.$ = $;
|
|
|
|
import UIkit from 'uikit';
|
|
import Icons from 'uikit/dist/js/uikit-icons';
|
|
|
|
// loads the Icon plugin
|
|
UIkit.use(Icons);
|
|
|
|
|
|
import "./bwc.js"; |