Skip to content

Commit

Permalink
docs: Added docs about dead code elimination
Browse files Browse the repository at this point in the history
  • Loading branch information
halfzebra committed Oct 28, 2017
1 parent d5fd36f commit a7493be
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ You can find the most recent version of this guide [here](https://github.com/hal
- [make](#make)
- [reactor](#reactor)
- [Turning on/off Elm Debugger](#turning-onoff-elm-debugger)
- [Dead code elimination](#dead-code-elimination)
- [Changing the Page `<title>`](#changing-the-page-title)
- [Adding a Stylesheet](#adding-a-stylesheet)
- [Post-Processing CSS](#post-processing-css)
Expand Down Expand Up @@ -168,6 +169,12 @@ By default, in production (`elm-app build`) the Debugger is turned off and in de

To turn on/off Elm Debugger explicitly, set `ELM_DEBUGGER` environment variable to `true` or `false` respectively.

## Dead code elimination

Create Elm App comes with an opinionated setup for dead code elimination which is disabled by default, because it may break your code.

You can enable it by setting `DEAD_CODE_ELIMINATION` environment variable to `true`

## Changing the base path of the assets in the HTML

By default, assets will be linked from the HTML to the root url. For example `/css/style.css`.
Expand Down

0 comments on commit a7493be

Please sign in to comment.