1234567891011121314151617181920212223242526272829303132 |
- const path = require('path');
- const common = path.resolve(__dirname, '../common');
- module.exports = {
- publicPath: `/${process.env.VUE_APP_ROUTER}`,
- outputDir: 'kjzlmobile',
- productionSourceMap: false,
- configureWebpack: (config) => {
- Object.assign(config, {
- resolve: {
- alias: {
- '@': path.resolve(__dirname, './src'),
- '@c': path.resolve(__dirname, './src/components'),
- '@a': path.resolve(__dirname, './src/assets'),
- '@common': common,
- },
- },
- });
- },
- devServer: {
- port: '8001',
- proxy: {
- '/files': {
- target: 'http://broadcast.waityou24.cn',
- },
- '/api/live': {
- target: 'http://127.0.0.1:9101', //http://127.0.0.1:9101//http://broadcast.waityou24.cn
- changeOrigin: true,
- ws: false,
- },
- },
- },
- };
|