require("./world.js");
require("./style.css");
打包:webpack hello.js(原主js文件) hello.bundle.js(打包成的文件)
给css文件指定loader:webpack hello.js hello.bundle.js --module-bind "css=style-loader!css-loader"
自动打包:webpack hello.js hello.bundle.js --module-bind "css=style-loader!css-loader" --watch
Ctrl+c退出 --watch命令
为什么打包文件:--display-reasons
网友评论