npx create-react-app@next --scripts-version=@next --template=cra-template@next my-js-app
npx create-react-app@next --scripts-version=@next --template=typescript@next my-ts-app
To update an existing app you can change the react-scripts version in package.json to next and then run yarn or npm install
You can see a list of all the changes in the 4.0 release here
I've got an error referencing images from public folder in css files. It was working fine in the latest stable version. Are there any configurations I should change?
background: url("/assets/arrow.svg"); /* Compile error: Can't resolve '/assets/arrow.svg' */