美文网首页
React项目build之后资源文件路径为根目录问题解决

React项目build之后资源文件路径为根目录问题解决

作者: 一叶信笺飘云间 | 来源:发表于2017-12-28 12:38 被阅读3765次

找到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);
}

function getServedPath(appPackageJson) {
  const publicUrl = getPublicUrl(appPackageJson);
  const servedUrl =
    envPublicUrl || (publicUrl ? url.parse(publicUrl).pathname : './');
  return ensureSlash(servedUrl, true);
}

再重新编译打包即可

相关文章

网友评论

      本文标题:React项目build之后资源文件路径为根目录问题解决

      本文链接:https://www.haomeiwen.com/subject/vhnmgxtx.html