webpack-dev-server怎么样生成实际的bundle.js ?
发布于 1个月前 作者 yakczh 167 次浏览 来自 问答

配置文件是

module.exports = {
  entry: {
    app: ['./app/main.js']
  },
  output: {
    path: './build',
    publicPath: "/assets/",
    filename: 'bundle.js'
  }
};

这样只在内存中生成虚拟的 http://localhost:8080/assets/bundle.js
用<script src="bundle.js" > </script> 提示404 怎么样才能生成实际的buille.js 这样页面中引用 script src="bundle.js" 就行了

回到顶部