如何在create-react-app中将`src`文件夹更改为其他内容
我想知道是否可以使用react-script
重命名src
为app
文件夹之类的其他名称
回答:
您可以使用react-app-rewired覆盖反应路径配置。就我而言,我可以更改 文件中的路径
const path = require('path');module.exports = {
paths: function (paths, env) {
paths.appIndexJs = path.resolve(__dirname, 'mysrc/client.js');
paths.appSrc = path.resolve(__dirname, 'mysrc');
return paths;
},
}
以上是 如何在create-react-app中将`src`文件夹更改为其他内容 的全部内容, 来源链接: utcz.com/qa/411929.html