Check issue #468 for information. Check issue #583 for figma design.
Bundler Parcel.js has been used for the compilation.
First install dependencies:
npm install
To run in hot module reloading mode:
npm start
node dist/bundle.js
To create a production build:
npm run build-prod
This disables watch mode and hot module replacement so it will only build once. It also enables the minifier for all output bundles to reduce file size. The minifiers used by Parcel are terser for JavaScript, cssnano for CSS, and htmlnano for HTML.