react模版app里面的eject步骤

npm install -g create-react-app
create-react-app my-app
cd my-app
git init
git add .
git commit -m "xxx"

 在执行npm run eject命令之前,需要执行git init等操作,否则run eject会报一些莫名其妙的错误(和git相关)。

你可能感兴趣的:(移动应用设计,前端技术/hybrid)