-
|
I want have |
Beta Was this translation helpful? Give feedback.
Answered by
TamirCode
Jun 10, 2023
Replies: 1 comment
-
|
using CRACO:
create at root of project (next to package.json) file called update scripts in package.json: "scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
},for typescript CRA, make sure to include this in tsconfig inside compilerOptions |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
TamirCode
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
using CRACO:
npm i @emotion/reactnpm i -D @emotion/babel-plugin @craco/cracocreate at root of project (next to package.json) file called
craco.config.jsupdate scripts in package.json:
"scripts": { "start": "craco start", "build": "craco build", "test": "craco test", },for typescript CRA, make sure to include this in tsconfig inside compilerOptions