Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 939 Bytes

README.md

File metadata and controls

41 lines (30 loc) · 939 Bytes

How to run dev && build

To start the app in dev environment:

cd tr-countdown
npm update
npm start

Runs the app in the development mode. Open http://localhost:3000 to view it in the browser.

The page will reload if edits are made. Lint errors will be displayed in the console.

To build the app for production:

cd tr-countdown
npm update
npm run build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
The app is ready to be deployed!

You may serve it with a static server:

serve -s build

Note

Due to a React bug at the time of finalizing it might be required to install an older version of terser via:

npm install [email protected] --save-dev