Webpack-dev-serverのコマンドパラメータ
3047 ワード
1.基本コマンド:webpack-dev-server
パッケージに追加jsonでscriptsオブジェクトで
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server !!!!! !!!!!",
"build": "webpack --config webpack.config.js"
},
2.webpack-dev-server第2の構成コマンド方式
Webpack-dev-server構成コマンドはwebpack.config.jsでの構成
devServer:{
open;true,
port: ,
contentBase:' ',
hot:true
}
const webpack=require('webpack')
Webpackでconfig.jsのmodule.exportsで//ホットアップデートのモジュールオブジェクトを追加
plugins:[
new webpack.HotModuleReplacementPlugins({
template:path.join(__dirname,' html '),
filename:'index.html'// ,
})
]