Webpack history-api-fallback不从根路径加载javascript

时间:2016-12-25 09:46:18

标签: node.js webpack webpack-dev-server

以下是我在“webpack.config.js”中设置history-api-fallback的代码

    devServer: {
            historyApiFallback:{
                index:'/dist/index.html'
            }
        }

Webpack找到了。

当它找不到路径时,它会转到index.html然后index.html调用javascript

 <script type="text/javascript" src="index_bundle.js"></script>

问题是“index.html”从调用的路径加载javascript,而不是在根路径中找到.js。

示例:

  1. http://localhost:8080/a/b/c/
  2. enter image description here

    1. http://localhost:8080/a/b/
    2. enter image description here

0 个答案:

没有答案