• 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"
                    }
                },*/
            }
    
        }
    };
  • 相关阅读:
    MySQL修改时区的方法小结
    MYSQL日期 字符串 时间戳互转
    2017php经典面试题
    PHP获得真实客户端的真实IP REMOTE_ADDR,HTTP_CLIENT_IP,HTTP_X_FORWARDED_FOR
    开放api接口签名验证
    MySql之ALTER命令用法详细解读(转)
    easyUI datagrid 清空
    webApi文档好帮手-apidoc使用教程
    驼峰命名和下划线命名互转php实现
    SQL Server 数据导入Mysql详细教程
  • 原文地址:https://www.cnblogs.com/yscec/p/12254875.html
Copyright © 2020-2023  润新知