美文网首页
webpack结合模块化

webpack结合模块化

作者: 云小泽同学 | 来源:发表于2020-04-27 15:37 被阅读0次

    1、结合上一节中创建a.js文件,并且写入以下内容:

    module.exports = "hello,webpack"
    
    a.js

    index.js写入以下内容

    let str = require("./a.js")
    console.log(str)
    

    3、npx webpack进行打包

    4、html文件引用打包后的js文件


    上一篇:https://www.jianshu.com/p/6d1981242a71

    相关文章

      网友评论

          本文标题:webpack结合模块化

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