2019-09-28 22:30:55 +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-04-25 16:30:47 +00:00
|
|
|
import css from "../css/app.scss"
|
2019-09-28 22:30:55 +00:00
|
|
|
|
|
|
|
// webpack automatically bundles all modules in your
|
|
|
|
// entry points. Those entry points can be configured
|
|
|
|
// in "webpack.config.js".
|
|
|
|
//
|
|
|
|
// Import dependencies
|
|
|
|
//
|
|
|
|
import "phoenix_html"
|
|
|
|
|
|
|
|
// Import local files
|
|
|
|
//
|
|
|
|
// Local files can be imported directly using relative paths, for example:
|
|
|
|
// import socket from "./socket"
|