npm run start
✓ development build and web server with Parcel
✓ hot code swapping with elm-hot
- Web page: http://localhost:1234
npm run build
✓ production build with Parcel
✓ compilation with the Elmoptimize
flag
✓ minification withterser
💡 The JS code from Elm is minified with special flags that work for Elm apps because they have no side-effects (otherwise it would be unreliable to use such flags).
Edit cypress.json
to use the 1234
Parcel dev server port (instead of the 8888
Netlify Dev port):
{
"baseUrl": "http://localhost:1234"
}
Learn more in README.md.