Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 284 Bytes

File metadata and controls

21 lines (16 loc) · 284 Bytes

React Starter Kit

Running

# after cloning the repo:

# for static build
$ npm i --production
$ export NODE_ENV=production
$ npm run build

# for local run
$ npm i
$ export NODE_ENV=development
$ npm run dev

# run static server
$ export PORT=3000
$ npm run serve