Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 673 Bytes

File metadata and controls

36 lines (26 loc) · 673 Bytes

Quick Start

Table of Contents

Prerequisites

Running the app

$ git clone
$ cd react-starter
$ npm install
$ npm run start:app

Adding new apps

  • Verify that webpack.plugin.js has the APP_PATH environment variable.
  • Add a script to package.json
  • Point to the correct APP_PATH.
{
  "scripts": {
    "start:app2": "cross-env NODE_ENV=development APP_PATH=./apps/App2.tsx webpack serve --config webpack.config.dev.js"
  }
}