我正在尝试更改config-overrides.json文件中的react-app-rewired的构建路径,如此处所述
[https://github.com/timarney/react-app-rewired/issues/201][1]
module.exports = {
paths: function (paths, env) {
paths.appBuild = 'C:\\Projects\\jhipster\\src\\main\\webapp\\app';
return paths;
}
};
,但未将其考虑在内,并且出现以下错误:
Could not find a required file.
Name: index.html
Searched in: C:\Projects\jhipster\public
我已经直接对该路径进行了硬编码,只是为了测试它是否正常工作。
我要省略什么吗?