mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
ce6d3ea2cd
- update public path (should work this time!) - load octicons from CDN
31 lines
699 B
JavaScript
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
|
|
}
|
|
};
|
|
|