bundle is not defined 手动搭建项目架构

Posted fengch

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bundle is not defined 手动搭建项目架构相关的知识,希望对你有一定的参考价值。

 bundle is not defined 报错,即找不到 bundle.js,filename: ‘bundle.js‘,//输出的文件名(将其所依赖的js打包成bundle.js)

创建的webpack.config.js文件

bundle.js要用引号引起来技术分享图片

//以js文件作为入口文件 相对路径保证文件的正确性
//在package.json中加入一个build脚本,指定config文件,调用项目内部的webpack
const path = require(‘path‘)
//path是node.js的基本包,用来处理路径的
module.exports = {
// 声明入口文件dirname代表文件目录所在的地址,
//path.join是将文件与后面的文件路径src/index.js拼接起来
//形成绝对路径,以保证访问路径的正确性
entry: path.join(__dirname,‘src/index.js‘),
//出口文件
output: {
filename: ‘bundle.js‘,//输出的文件名(将其所依赖的js打包成bundle.js)
path: path.join(__dirname,‘dist‘)//输出文件的绝对路径
},
//来处理.vue文件
module:{
rules:[
{
test:/.vue$/,//正则以.vue结尾的文件
loader:‘vue-loader‘//使用vue-loader
}
]
}
}

以上是关于bundle is not defined 手动搭建项目架构的主要内容,如果未能解决你的问题,请参考以下文章

记解决 `antd is not defined` 解决ant design 打包体积过大的问题

安装php configure无法通过:报错Note that the MySQL client library is not bundled anymore!

Uncaught ReferenceError: Clipboard is not defined: when using clipboard.js with Rails 6

nodejs出现require is not defined和__dirname is not define 错误

火狐 event is not defined

调用js报错 错误: $ is not defined