// see vuejs-templates.github.io/webpack for documentation. var path = require('path')
module.exports = {
build: { env: { NODE_ENV: '"production"' }, assetsRoot: path.resolve(__dirname, '../../public/webpack'), assetsSubDirectory: '/', assetsPublicPath: '/', productionSourceMap: true }, dev: { env: { NODE_ENV: '"development"' }, port: 8080, assetsSubDirectory: '/', assetsPublicPath: '/', proxyTable: {}, // 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 }
}