Skip to content

TTLApp/website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Website Time to Leave

Check issue #468 for information. Check issue #583 for figma design.

Building and running on localhost

Bundler Parcel.js has been used for the compilation.

First install dependencies:

npm install

To run in hot module reloading mode:

npm start

Running

node dist/bundle.js

Deploy

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.