Top "Create-react-app" questions

create-react-app is a starter-kit for creating React apps with no build configuration.

How to generate sourcemaps in create react app?

I'm wondering how to generate source maps in create-react-app? are they done implicitly? and do they live in the build …

javascript reactjs create-react-app source-maps
How to configure react-script so that it doesn't override tsconfig.json on 'start'

I'm currently using create-react-app to bootstrap one of my projects. Basically, I'm trying to set up paths in tsconfig.json …

reactjs typescript create-react-app react-scripts
Can create-react-app be used with TypeScript

Is it possible to use TypeScript with create-react-app? If so, how would you do it?

reactjs create-react-app
Why won't my nested React components render?

I'm having a problem with my React component. The nested children of my component ControlPanel don't seem to be rendering. …

javascript reactjs create-react-app
How to register service worker using webpack?

I'm implementing a ReactJS web application using webpack and I want to start implementing a service worker to handle the …

reactjs webpack service-worker create-react-app
Create-React-App Proxy in Production Build

I'm using create-react-app with an express backend. I have the backend running on port 3001, and the frontend runs through port 3000 …

reactjs express proxy create-react-app
Disable ESLint that create-react-app provides

create-react-app v3.0.0 is out. It supports TypeScript linting internally. (That's nice!) I think I understand the situation where TSLint is …

reactjs typescript eslint create-react-app
Disable error overlay in development mode

Is there a way to disable the error overlay when running a create-react-app in development mode? This is the overlay …

create-react-app
"ReferenceError: document is not defined" when trying to test a create-react-app project

This is my __tests__/App.js file: import React from 'react'; import ReactDOM from 'react-dom'; import App from '../src/…

javascript reactjs jestjs create-react-app
ReactJS: How to prevent browser from caching static files?

I'm working on my project using ReactJS and I use create-react-app to create my app. After building project, I use …

reactjs caching browser-cache create-react-app static-files