mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 18:00:20 +00:00
22 lines
472 B
JavaScript
22 lines
472 B
JavaScript
// see http://vuejs-templates.github.io/webpack for documentation.
|
|
var path = require('path')
|
|
|
|
module.exports = {
|
|
build: {
|
|
env: require('./prod.env'),
|
|
assetsRoot: path.resolve(__dirname, '../dist'),
|
|
assetsSubDirectory: '',
|
|
assetsPublicPath: '/',
|
|
productionSourceMap: true,
|
|
},
|
|
dev: {
|
|
env: require('./dev.env'),
|
|
port: 8080,
|
|
proxyTable: {}
|
|
},
|
|
umd: {
|
|
assetsRoot: path.resolve(__dirname, '../umd'),
|
|
assetsPublicPath: '/'
|
|
}
|
|
}
|