• vue.config 同时配置 chainWebpack和关闭eslint检查多个配置项目共存


    大家可能会遇到和我一样的问题,所以我把它写出来

    一开始你可能遇到这个问题:

    vue报错:Component name “xxx“ should always be multi-word

    于是你去网上搜索,发现解决问题的方法是

    之后你继续做需要解决跨域问题是这样的

    module.exports = {
       "devServer": {                //记住,别写错了devServer//设置本地默认端口  选填
           port: 8085,
           proxy: {                 //设置代理,必须填
               '/api': {              //设置拦截器  拦截器格式   斜杠+拦截器名字,名字可以自己定
                   target: 'http://localhost:8081',     //代理的目标地址
                   changeOrigin: true,              //是否设置同源,输入是的
                   pathRewrite: {                   //路径重写
                       '^/api': ''                     //选择忽略拦截器里面的内容
                   }
               }
           }
       },

    由于你是小白,你决定直接cv上去就会写成下面的这个样子

    之后你会发现第二个module.exports覆盖第一个module.exports,事实上如何让两个module.exports中的内容同时生效呢?

    多个配置代码如下

    1. module.exports = {
    2. baseUrl: './',
    3. assetsDir: 'static',
    4. parallel: false,
    5. productionSourceMap: false,
    6. devServer: {
    7. host:'localhost',
    8. port:'8081',
    9. open:true
    10. },
    11. }
    12. const path = require("path");
    13. function resolve(dir) {
    14. return path.join(__dirname, dir);
    15. }
    16. module.exports = {
    17. publicPath: './',
    18. chainWebpack: config => {
    19. config.resolve.alias
    20. .set('@', resolve('src'))
    21. .set('utils', resolve('src/utils'))
    22. .set('assets', resolve('src/assets'))
    23. .set('common', resolve('src/components'));
    24. },
    25. configureWebpack: (config) => {
    26. if (process.env.NODE_ENV === 'production') {// 为生产环境修改配置...
    27. config.mode = 'production';
    28. config["performance"] = {//打包文件大小配置
    29. "maxEntrypointSize": 10000000,
    30. "maxAssetSize": 30000000
    31. }
    32. }
    33. },
    34. transpileDependencies: true,
    35. lintOnSave: false, //关闭eslint检查
    36. };

  • 相关阅读:
    Acwing 838. 堆排序
    使用docker安装MySQL,Redis,Nacos,Consul教程
    如何将Linux上部署的5.7MySql数据库编码修改utf8(最新版)
    Android布局转图片Bitmap
    14:00面试,14:08就出来了,问的问题有点变态了。。。
    【模型训练】YOLOv7训练visdrone数据集
    openGauss学习笔记-62 openGauss 数据库管理-两地三中心跨Region容灾
    设计模式-原型模式
    TortoiseGit使用教程
    学习Opencv(蝴蝶书/C++)——1. 前言 和 第1章.概述
  • 原文地址:https://blog.csdn.net/coldriversnow/article/details/127809973