zoukankan      html  css  js  c++  java
  • vue.config.js

    const path = require("path");
    const resolve = function(dir) {
        return path.join(__dirname, dir);
    };
    module.exports = {
        publicPath: "./",
        outputDir: "dist",
        assetsDir: "static",
        lintOnSave: false, // 是否开启eslint保存检测
        productionSourceMap: false, // 是否在构建生产包时生成sourcdeMap
        chainWebpack: config => {
            config.resolve.alias
                .set("@", resolve("src"))
                .set("@", resolve("src/views"))
                .set("@", resolve("src/components"))
                .set("@", resolve("src/common"))
                .set("@", resolve("src/utils"))
                .set("@", resolve("src/service")); /* 别名配置 */
            config.optimization.runtimeChunk("single");
        },
        devServer: {
            // host: "localhost",
            /* 本地ip地址 */
            host: "localhost",
            port: "10000",
            hot: true,
            /* 自动打开浏览器 */
            open: true,
            overlay: {
                warning: false,
                error: true
            },
            /* 跨域代理 */
            proxy: {
                "/item": {
                    /* 目标代理服务器地址 */
                    target: "http://localhost:80", //localhost:80/api/item/category/list
                    // target: "http://192.168.1.102:8888", //
                    /* 允许跨域 */
                    changeOrigin: true,
                    ws: true,
                    pathRewrite: {
                        "^/item": "/api/item"
                    }
                },
                "/upfile": {
                    /* 目标代理服务器地址 */
                    target: "http://localhost:80", //localhost:80/api/item/category/list
                    // target: "http://192.168.1.102:8888", //
                    /* 允许跨域 */
                    changeOrigin: true,
                    ws: true,
                    pathRewrite: {
                        "^/upfile": "/api/upfile"
                    }
                },
                /*"/upload": {
                    /!* 目标代理服务器地址 *!/
                    target: "http://localhost:8082", //localhost:80/api/item/category/list
                    // target: "http://192.168.1.102:8888", //
                    /!* 允许跨域 *!/
                    changeOrigin: true,
                    ws: true,
                    pathRewrite: {
                        "^/upload": "/upload"
                    }
                },*/
            }
    
        }
    };
  • 相关阅读:
    H264关于RTP协议的实现
    RTSP交互命令简介及过程参数描述
    RTSP协议详解
    TCP 协议中MSS的理解
    RTSP 协议分析
    Linux下/etc/resolv.conf 配置DNS客户
    371. Sum of Two Integers
    python StringIO
    高效的两段式循环缓冲区──BipBuffer
    JavaScript Lib Interface (JavaScript系统定义的接口一览表)
  • 原文地址:https://www.cnblogs.com/yscec/p/12254875.html
Copyright © 2011-2022 走看看