代码拉取完成,页面将自动刷新
const {resolve} = require('path')
module.exports = {
entry:{
local:'./src/local.index.js',//先不编译
online:'./src/online.index.js'
},
output:{
filename:'[name].js',
path: resolve(__dirname,'build')
},
module:{// loader 配置
rules:[
/**
* 1、基本JS 兼容处理 -> @babel/preset-env
* 2、全部JS兼容性处理-> @babel/polyfill
* 3、需要做兼容处理的时候就做,按需加载 -> core-js
*/
{
test:/\.js$/,
exclude:/node_modules/,
use:[
{
loader: 'babel-loader', // es6-es5
options: {
presets: [
[
'@babel/preset-env',
{
useBuiltIns:'usage',
// 指定 core-js 版本
corejs:{
version:3
},
// 指定兼容性做到哪个版本浏览器
targets:{
chrome:'60',
firefox:'60'
}
}
]
]
}
},{
loader: 'eslint-loader',
options: {
fix: true
}
}
],
}
]
},
plugins: [// 插件
],
mode:'production',
// mode:'development',
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。