1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 'use strict'
- const path = require('path')
- module.exports = {
- build: {
- env: require('./prod.env'),
- index: path.resolve(__dirname, '../example/index.html'),
- assetsRoot: path.resolve(__dirname, '../example'),
- assetsSubDirectory: './static',
- assetsPublicPath: './',
- productionSourceMap: true,
-
-
-
-
- productionGzip: false,
- productionGzipExtensions: ['js', 'css'],
-
-
-
-
- bundleAnalyzerReport: process.env.npm_config_report
- },
- dev: {
- env: require('./dev.env'),
- port: process.env.PORT || 8080,
- autoOpenBrowser: true,
- assetsSubDirectory: 'static',
- assetsPublicPath: '/',
- proxyTable: {},
-
-
-
-
-
- cssSourceMap: false
- }
- }
|