123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- 'use strict'
- const path = require('path')
- const proxyTable = {
- '/api': {
-
- target: 'http://172.16.3.12:8080',
- changeOrigin: true,
- pathRewrite: {
- '^/api': ''
- }
- },
- '/sass': {
- target: 'http://192.168.30.96:8080',
- changeOrigin: true,
- pathRewrite: {
- '^/sass': ''
- }
- },
- '/img': {
- target: 'http://192.168.20.225:8080',
- changeOrigin: true,
- pathRewrite: {
- '^/img': ''
- }
- },
- '/physics': {
-
- target: 'http://192.168.20.225:8080',
- changeOrigin: true,
- pathRewrite: {
- '^/physics': ''
- }
- },
- '/seeImg': {
- target: 'http://172.16.0.181:8890',
- changeOrigin: true,
- pathRewrite: {
- '^/seeImg': ''
- }
- },
- '/arithmetic': {
- target: 'http://101.200.32.13:8001',
- changeOrigin: true,
- pathRewrite: {
- '^/arithmetic': ''
- }
- },
- }
- module.exports = {
- dev: {
-
- assetsSubDirectory: 'static',
- assetsPublicPath: '/',
-
- host: '0.0.0.0',
- port: 8091,
- autoOpenBrowser: true,
- errorOverlay: true,
- notifyOnErrors: true,
- poll: false,
- proxyTable: proxyTable,
-
- productionGzip: true,
- productionGzipExtensions: ['js', 'css'],
-
- devtool: 'cheap-module-eval-source-map',
-
-
-
- cacheBusting: true,
- cssSourceMap: true
- },
- build: {
-
- index: path.resolve(__dirname, '../dist/index.html'),
-
- assetsRoot: path.resolve(__dirname, '../dist'),
- assetsSubDirectory: 'static',
- assetsPublicPath: '/',
-
- productionSourceMap: true,
-
- devtool: '#source-map',
-
-
-
-
- productionGzip: true,
- productionGzipExtensions: ['js', 'css'],
-
-
-
-
- bundleAnalyzerReport: process.env.npm_config_report
- }
- }
|