mirror of
https://github.com/tenrok/vue2-datepicker.git
synced 2026-05-17 03:59:39 +03:00
14 lines
296 B
JavaScript
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
|