mirror of
https://github.com/mdgriffith/elm-optimize-level-2.git
synced 2024-11-25 22:50:42 +03:00
431 B
431 B
Minification
After installing elm-optimize
,
Install a minifier like Terser
.
npm install -g terser
Then, you'll want to run these commands to minify and gzip your code before deploying.
elm-optimize Main.elm --output=app.js
terser app.js
gzip --keep --force app.min.js
# --keep = keep the original file
# --force = overwrite the exisign gzip file if it's there