1、结合上一节中创建a.js文件,并且写入以下内容:
module.exports = "hello,webpack"
index.js写入以下内容
let str = require("./a.js")
console.log(str)
3、npx webpack进行打包
4、html文件引用打包后的js文件
1、结合上一节中创建a.js文件,并且写入以下内容:
module.exports = "hello,webpack"
index.js写入以下内容
let str = require("./a.js")
console.log(str)
3、npx webpack进行打包
4、html文件引用打包后的js文件