2
0
mirror of https://github.com/tenrok/vue2-datepicker.git synced 2026-05-17 03:59:39 +03:00
Files
vue2-datepicker/build/webpack.demo.config.js
T
2018-06-16 11:10:32 +08:00

14 lines
296 B
JavaScript

const merge = require('webpack-merge')
const devWebpackConfig = require('./webpack.dev.config.js')
const webpackConfig = merge(devWebpackConfig, {
devtool: 'source-map',
mode: 'production',
externals: {
'vue': 'Vue',
'@/index': 'DatePicker'
},
})
module.exports = webpackConfig