美文网首页
webpack基础知识笔记

webpack基础知识笔记

作者: 一梦两三年丶 | 来源:发表于2017-03-10 21:54 被阅读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


    相关文章

      网友评论

          本文标题:webpack基础知识笔记

          本文链接:https://www.haomeiwen.com/subject/uqbogttx.html