2017-01-02 21:52:33 +01:00
|
|
|
// 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: 'static',
|
|
|
|
assetsPublicPath: '/',
|
|
|
|
productionSourceMap: true,
|
|
|
|
// Gzip off by default as many popular static hosts such as
|
|
|
|
// Surge or Netlify already gzip all static assets for you.
|
|
|
|
// Before setting to `true`, make sure to:
|
|
|
|
// npm install --save-dev compression-webpack-plugin
|
|
|
|
productionGzip: false,
|
2017-03-13 20:52:53 +01:00
|
|
|
productionGzipExtensions: ['js', 'css'],
|
|
|
|
// Run the build command with an extra argument to
|
|
|
|
// View the bundle analyzer report after build finishes:
|
|
|
|
// `npm run build --report`
|
|
|
|
// Set to `true` or `false` to always turn it on or off
|
|
|
|
bundleAnalyzerReport: process.env.npm_config_report
|
2017-01-02 21:52:33 +01:00
|
|
|
},
|
|
|
|
dev: {
|
|
|
|
env: require('./dev.env'),
|
|
|
|
port: 8080,
|
2017-03-13 20:52:53 +01:00
|
|
|
autoOpenBrowser: true,
|
2017-01-02 21:52:33 +01:00
|
|
|
assetsSubDirectory: 'static',
|
|
|
|
assetsPublicPath: '/',
|
2017-01-14 12:35:55 +01:00
|
|
|
proxyTable: {
|
|
|
|
'/days': 'http://localhost:3000',
|
|
|
|
'/attendees': 'http://localhost:3000',
|
|
|
|
'/login': 'http://localhost:3000',
|
|
|
|
'/logout': 'http://localhost:3000',
|
2017-01-26 22:11:06 +01:00
|
|
|
'/user': 'http://localhost:3000',
|
2017-02-26 16:04:29 +01:00
|
|
|
'/groups': 'http://localhost:3000',
|
|
|
|
'/settings': 'http://localhost:3000'
|
2017-01-14 12:35:55 +01:00
|
|
|
},
|
2017-01-02 21:52:33 +01:00
|
|
|
// CSS Sourcemaps off by default because relative paths are "buggy"
|
|
|
|
// with this option, according to the CSS-Loader README
|
|
|
|
// (https://github.com/webpack/css-loader#sourcemaps)
|
|
|
|
// In our experience, they generally work as expected,
|
|
|
|
// just be aware of this issue when enabling this option.
|
|
|
|
cssSourceMap: false
|
|
|
|
}
|
|
|
|
}
|