Webpack - chunk将无法加载

时间:2016-01-17 08:18:34

标签: webpack

我遇到了webpack块的问题

所以我配置webpack来编译到dist文件夹 然后有buldle.js1.bundle.js那里

但浏览器不会审核1.bundle.js,因为该文件的路径错误

在chrome devtool中>网络标签

bundle.js = http://localhost:3000/dist/bundle.js

,但.. 1.bundle.js = http://localhost:3000/1.bundle.js

出了什么问题?

1 个答案:

答案 0 :(得分:2)

我找到了答案,我们需要指定publicPath .. Webpack not loading partial files from the same root

{
    entry: 'src/main.js',
    output: {
        path: 'dist/',
        publicPath: '/dist/'
    }
}