let webpack=require('webpack')//导入webpack
module.exports={
devServer:{
open:true,
port:3000,
contentbase:"src",
hot:true
},
plugins:[
new webpack.HotMOduleReplacementPlugin()//new一个热更新的模块对象
]
}
let webpack=require('webpack')//导入webpack
module.exports={
devServer:{
open:true,
port:3000,
contentbase:"src",
hot:true
},
plugins:[
new webpack.HotMOduleReplacementPlugin()//new一个热更新的模块对象
]
}