2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/config/index.js
T
Jeff ce6d3ea2cd - dont destroy /dist/ when building homepage
- update public path (should work this time!)
- load octicons from CDN
2018-01-15 15:52:31 -08:00

31 lines
699 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: '/'
},
homepage: {
env: require('./prod.env'),
entry: './docs/homepage/home.js',
assetsRoot: path.resolve(__dirname, '../site'),
assetsSubDirectory: '',
assetsPublicPath: '',
productionSourceMap: true
}
};