React项目build之后资源文件路径 问题解决 背景图片
1. 找到node_modules -> react-scripts -> config -> paths.js
- 修改
function getServedPath(appPackageJson) {
const publicUrl = getPublicUrl(appPackageJson);
const servedUrl =
envPublicUrl || (publicUrl ? url.parse(publicUrl).pathname : '/');//改成'./'
return ensureSlash(servedUrl, true);
}
.add-bank-sign {
background: url("./../img/index.png"); //路径前面加'./'
}

本文详细介绍了如何解决React项目构建后出现的资源文件路径问题,通过修改paths.js中的路径配置,确保背景图片等资源能够正确加载。
9807

被折叠的 条评论
为什么被折叠?



