mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 18:00:20 +00:00
33 lines
734 B
JavaScript
33 lines
734 B
JavaScript
const webpack = require('webpack')
|
|
const base = require('./webpack.base.conf')
|
|
const config = require('../config')
|
|
|
|
base.entry = {
|
|
lib: './src/index.js'
|
|
}
|
|
|
|
base.output = {
|
|
path: config.build.assetsRoot,
|
|
publicPath: config.build.assetsPublicPath,
|
|
filename: 'vue-chartjs.js',
|
|
library: 'VueChartJs',
|
|
libraryTarget: 'umd'
|
|
}
|
|
|
|
var webpackConfig = Object.assign({}, base)
|
|
|
|
webpackConfig.devtool = '#source-map'
|
|
webpackConfig.plugins = (webpackConfig.plugins || []).concat([
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
NODE_ENV: '"production"'
|
|
}
|
|
}),
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: { warnings: false }
|
|
}),
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
])
|
|
|
|
module.exports = webpackConfig
|