Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.55 KB

README.md

File metadata and controls

32 lines (23 loc) · 1.55 KB

Create React App for Volst Build Status

Create React apps with no build configuration.


This is a fork of Create React App, intended for use at our company Volst.

The main differences with Create React App are;

  • Uses TypeScript, mostly copied from create-react-app-typescript
  • No CSS Autoprefixer, we only support modern browsers
  • Doesn't use source maps by default
  • Support for PUBLIC_URL env variable in dev
  • Uses Babel Minify instead of UglifyJs for minifying
  • Basic Electron compatibility via env variable
  • Allows custom dotenv file location (in our build system .env cannot live in the repository root)
  • Removes most polyfills for older browsers
  • Adds Git version and commit hash to env variable so frontend can display it

Getting Started

npx create-react-app --scripts-version=@volst/react-scripts my-app
cd my-app/
npm start

For further instructions, read the Getting Started guide from the original Create React App.