Example of single-page web application based on elm-webpack-boilerplate using Webpack, Elm and Sass. It demonstrates how to use navigation, how you can split Elm application code into multiple modules, and how to build the application for production.
You need to install server dependencies using yarn:
$ yarn
Then, you can run the server:
$ yarn server
The Elm application can be run in development mode with hot reload using Webpack:
$ yarn start
If you want to create a production build, use:
$ yarn build
Format js
and ELM
code with prettier and elm-format:
$ yarn format