webpack-dev-server --config webpack.config3.js
var path = require("path");
module.exports = {
entry: { app: ["./app/main.js"] },output: { path: path.resolve(__dirname, 'build'), filename: 'bundle.js'
}
}
下面是html中访问的路径
<script src="bundle.js"></script>
我发现 随便修改output path 对html的引用 没有任何影响(只有publicPath会影响 ,比如pubblicPath:为assets 那么上面的src= "assets/bundle.js") ,而且直接访问 http://localhost:8080/build/b... 也是访问不到这个文件的 ,如果 这个文件是在内存中存储 , bundle.js怎么才能访问到呢 (除了 html中引用的路径 不等于output path的路径)?
DIEA
相关分类