Getting Started | CRACO
craco 是专门由于 cra 配置的重写,扩展配置 cra (webpack)。
-
安装依赖
npm i -D @craco/craco
-
根目录下创建 craco.config.js 和配置 configure:
my-app ├── node_modules + ├── craco.config.js └── package.json
craco.config.js
module.exports = { devServer: { proxy: { '/api': { target: 'http://localhost:3000', changeOrigin: true, } } } }
-
脚本更改:
package.json
"scripts": { - "start": "react-scripts start" + "start": "craco start" - "build": "react-scripts build" + "build": "craco build" - "test": "react-scripts test" + "test": "craco test" }
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » CRACO 快速使用
发表评论 取消回复