Closed boblannon closed 5 years ago
To run the app locally, we tell users to run yarn start, which runs parcel. According to the the parceljs.org docs, though, the correct invocation is parcel index.html. Changing this fixes the behavior and makes it possible to host the app locally.
yarn start
parcel
parcel index.html
To run the app locally, we tell users to run
yarn start
, which runsparcel
. According to the the parceljs.org docs, though, the correct invocation isparcel index.html
. Changing this fixes the behavior and makes it possible to host the app locally.