mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-04-18 05:41:03 +00:00
22 lines
565 B
JavaScript
22 lines
565 B
JavaScript
// see http://vuejs-templates.github.io/webpack for documentation.
|
|
var path = require('path')
|
|
|
|
module.exports = {
|
|
build: {
|
|
env: require('./prod.env'),
|
|
index: path.resolve(__dirname, '../dist/index.html'),
|
|
assetsRoot: path.resolve(__dirname, '../dist'),
|
|
assetsSubDirectory: '',
|
|
assetsPublicPath: '/',
|
|
productionSourceMap: true,
|
|
productionGzip: false,
|
|
productionGzipExtensions: ['js', 'css']
|
|
},
|
|
dev: {
|
|
env: require('./dev.env'),
|
|
port: 8080,
|
|
assetsSubDirectory: '',
|
|
assetsPublicPath: '/',
|
|
proxyTable: {}
|
|
}
|
|
}
|