Installed bun
version is
bun -v
0.1.2
I created a react app with the following command
bun create react my-bun-app
To run it I am using the following command
cd my-bun-app
bun dev
bun
version isbun -v
0.1.2
bun create react my-bun-app
cd my-bun-app
bun dev
build
command for building the react app?To build a React app with bun, you need to install react-scripts. You can do that with bun a react-scripts
. Then just run bun react-scripts build
.
To build a React app with bun, you need to install react-scripts.
You can do that with bun a react-scripts
.
Then add
"build": "react-scripts build"
in package.json inside the scripts
Then just run bun react-scripts build
.