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文件
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文件