webpack基础知识笔记

2017-03-10  本文已影响0人  一梦两三年丶

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


上一篇下一篇

猜你喜欢

热点阅读