element-plus-china-area
Version:
Element PLUS 级联 中国省市区港澳台数据
25 lines (21 loc) • 422 B
JavaScript
const { resolve } = require('path')
const config = {
mode: 'production',
entry: './src/app.js',
output: {
path: resolve(__dirname, './dist'),
filename: 'app.commonjs.js',
libraryTarget: 'commonjs2'
},
module: {
rules: [
{
test: /\.js$/,
use: 'babel-loader',
exclude: /node_modules/
}
]
}
}
module.exports = config