1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 'use strict'
- const path = require('path')
- module.exports = {
- //http://192.168.0.105:8081/
- //http://app.bluefire.top:8088 线上地址
- dev: {
- assetsSubDirectory: 'static',
- assetsPublicPath: '/bid',
- proxyTable: {
- '/': {
- // target: 'http://43.136.176.26:7001', //后端接口地址 中间人运营平台
- target: 'http://127.0.0.1:28080', //后端接口地址
- changeOrigin: true, //是否跨域
- pathRewrite: {
- '^/': '/', //重写,
- }
- }
- },
- // 本地开发使用 192.168.0.126 localhost
- host: '127.0.0.1',
- // host: '192.168.124.14',
- port: 8081,
- autoOpenBrowser: true,
- errorOverlay: true,
- notifyOnErrors: false,
- poll: false,
- useEslint: true,
- showEslintErrorsInOverlay: false,
- devtool: 'cheap-source-map',
- cssSourceMap: false
- },
- build: {
- index: path.resolve(__dirname, '../dist/index.html'),
- assetsRoot: path.resolve(__dirname, '../dist'),
- assetsSubDirectory: 'static',
- assetsPublicPath: '/bid/',
- productionSourceMap: false,
- devtool: 'source-map',
- productionGzip: false,
- productionGzipExtensions: ['js', 'css'],
- bundleAnalyzerReport: process.env.npm_config_report || false,
- generateAnalyzerReport: process.env.npm_config_generate_report || false
- }
- }
|