webpack(6) 打包多页应用和sourcemap 使用
2021-03-11 16:28
标签:filename 代码块 try ack EAP uil let bpa lan 首先在src下创建两个js文件,index.js和other.js 接着进行配置,利用 此时[name]打包出来的是home.js和other.js因为入口文件给的键就是这两个 接着写一个html文件,并借用html-webpack-plugin进行注入 需要两个文件,于是需要两个 plugins配置如下 这样打包可以配置出两个文件, 但是查看文件的时候可以发现,这两者都同时引用了index.js和other.js 此时需要给一个chunks属性,此时文件就各自引用各自对应的代码块 配置devtool使得在出错的时候可以查看具体是哪个文件出错 不会产生列的两个试了下,其实可以产生列(目前还未深究,日后研究) webpack(6) 打包多页应用和sourcemap 使用 标签:filename 代码块 try ack EAP uil let bpa lan 原文地址:https://www.cnblogs.com/axu1997/p/12834059.html打包多页应用
[]
配置打包出口的文件名,这是一个变量,执行build之后可以看到dist目录下有两个js文件let path = require(‘path‘)
module.exports ={
mode:‘development‘,
//多入口
entry:{
home:‘./src/index.js‘,
other:‘./src/other.js‘
},
output:{
filename:‘[name].js‘,
path:path.resolve(__dirname,‘dist‘)
}
}
html-webpack-plugin
对象
plugins:[
new HtmlWebpackPlugin({
template:‘./src/index.html‘,
filename:‘index.html‘
}),
new HtmlWebpackPlugin({
template:‘./src/index.html‘,
filename:‘other.html‘
})
]
index.html
和other.html
let path = require(‘path‘)
let HtmlWebpackPlugin =require(‘html-webpack-plugin‘)
module.exports ={
mode:‘development‘,
//多入口
entry:{
home:‘./src/index.js‘,
other:‘./src/other.js‘
},
output:{
filename:‘[name].js‘,
path:path.resolve(__dirname,‘dist‘)
},
plugins:[
new HtmlWebpackPlugin({
template:‘./src/index.html‘,
filename:‘index.html‘,
chunks:[‘home‘] //看入口文件来配置
}),
new HtmlWebpackPlugin({
template:‘./src/index.html‘,
filename:‘other.html‘,
chunks:[‘other‘]
})
]
}
source-map
// devtool:‘source-map‘,//增加映射文件
// devtool:‘eval-source-map‘,//不会产生单独的文件,但能显示行和列
// devtool:‘cheap-module-source-map‘,//不会产生列,但是是一个单独的映射文件
// devtool:‘cheap-module-eval-source-map‘,//不会产生文件 集成在打包后的文件中, 不会产生列
文章标题:webpack(6) 打包多页应用和sourcemap 使用
文章链接:http://soscw.com/index.php/essay/63275.html