'use strict' const path = require('path') module.exports = { dev: { assetsSubDirectory: 'static', assetsPublicPath: '/', proxyTable: { '/mdxtpt/teamwork/api': { // target: 'http://172.16.15.117:8084/', // 开发环境 target: 'http://122.51.94.140/', // 远程开发环境 changeOrigin: true }, '/mdxtpt/mdImage': { // target: 'http://172.16.15.117:8084/', // 开发环境 target: 'http://122.51.94.140/', // 远程开发环境 changeOrigin: true }, }, host: '0.0.0.0', port: 8086, autoOpenBrowser: false, errorOverlay: true, notifyOnErrors: true, poll: false, useEslint: false, showEslintErrorsInOverlay: false, devtool: 'cheap-module-eval-source-map', cacheBusting: true, cssSourceMap: true }, build: { // Template for index.html index: path.resolve(__dirname, '../dist/index.html'), // Paths assetsRoot: path.resolve(__dirname, '../dist'), assetsSubDirectory: 'static', assetsPublicPath: '/mdxtpt/', /** * Source Maps */ productionSourceMap: true, // https://webpack.js.org/configuration/devtool/#production devtool: '#source-map', // 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, 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 } }