webpack结合模块化

2020-04-27  本文已影响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

上一篇下一篇

猜你喜欢

热点阅读