- Please check the
nodejs,npm, andyarnare installed. Or
sudo apt install nodejs
sudo apt install npm
sudo npm install --global yarn- Install dependency
yarn install- Create static files
yarn deploy- Copy the static files to the corresponding directory
sudo cp -r ./build/* /var/www/html/- Restart
nginx
sudo systemctl restart nginx - package.json
replace
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},with
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],