app.js 488 B

123456789101112131415
  1. // We need to import the CSS so that webpack will load it.
  2. // The MiniCssExtractPlugin is used to separate it out into
  3. // its own CSS file.
  4. import "../css/app.scss"
  5. // webpack automatically bundles all modules in your
  6. // entry points. Those entry points can be configured
  7. // in "webpack.config.js".
  8. //
  9. // Import deps with the dep name or local files with a relative path, for example:
  10. //
  11. // import {Socket} from "phoenix"
  12. // import socket from "./socket"
  13. //
  14. import "phoenix_html"