我的 webpack.config 文件中有这个输出配置:
config = {
...
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: 'http://localhost:8090/'
},
... }
bundle.js 未写入path
;中指定的路径 它只能通过网络服务器获得,而我两者都想要。
我应该更改什么以同时拥有文件和 Web 服务器?