legendary-doc-site/apps/app/assets/js/app.js

16 lines
488 B
JavaScript
Raw Normal View History

2020-07-29 17:07:36 +00:00
// 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.
2020-08-22 15:01:04 +00:00
import "../css/app.css"
2020-07-29 17:07:36 +00:00
// 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"
//
2020-08-22 15:01:04 +00:00
import "phoenix_html"