我遇到了webpack块的问题
所以我配置webpack来编译到dist文件夹
然后有buldle.js
和1.bundle.js
那里
但浏览器不会审核1.bundle.js
,因为该文件的路径错误
在chrome devtool中>网络标签
bundle.js
= http://localhost:3000/dist/bundle.js
,但..
1.bundle.js
= http://localhost:3000/1.bundle.js
出了什么问题?
答案 0 :(得分:2)
我找到了答案,我们需要指定publicPath .. Webpack not loading partial files from the same root
{
entry: 'src/main.js',
output: {
path: 'dist/',
publicPath: '/dist/'
}
}