使用create-react-app中遇到的问题

  1. 将配置文件导出

    1
    npm run eject
  2. 打包的静态资源路径

    1
    2
    3
    // 在config -> path.js -> 36 line位置
    const servedUrl =
    envPublicUrl || (publicUrl ? url.parse(publicUrl).pathname : './');
  3. 在create-react-app中配置了less,然后在引入的时候,会报一个Inline JavaScript is not enabled. Is it set in your options?的错,这个时候需要

    1
    2
    3
    4
    {
    loader: require.resolve('less-loader'),
    options: { javascriptEnabled: true }
    }

持续更新…

avatar

changzhn`s blog

中国人睡觉时,美国人大多数人在工作