周凯,个人博客

  • 前端
  • 嵌入式
  • 工具
  • 后端
  • 随笔
个人记录
  1. 首页
  2. 前端
  3. vue2
  4. 正文

vue.config.js vue-cli5 配置路径别名@和跨域proxy

2023年 3月 15日 836点热度 1人点赞 0条评论

遇到的问题

  • 我用vue-cli5创建一个vue3项目(vue-cli默认是webpack集成),想使用路径别名@和跨域proxy。于是我去网站上各种找,最后发现如下方法。

  • 默认vue.config.js代码

    const { defineConfig } = require('@vue/cli-service')
    module.exports = defineConfig({
    transpileDependencies: true,
    lintOnSave: false
    })

解决

  • 删除defineConfig.直接在module.exports上操作

    {
      transpileDependencies: true,
      publicPath: "./",
      outputDir: "nmgsltjsd",
      configureWebpack: {
          resolve: {
              alias: {
                  "@": path.resolve(__dirname, "src"),
                  "@@": path.resolve(__dirname, "src/components"),
                  "@assets": path.resolve(__dirname, "src/assets"),
              }
          },
          devServer: {
              proxy: {
                  "/api": {
                      target: "http://你代码的服务端地址"
                  }
              }
          }
      }
    }

🎯 拓展阅读提示

本文涉及的内容已同步至公众号后台,我会在那里分享更多深度内容和实用技巧

→ 点击关注:一行梦境

公众号二维码
本作品采用 知识共享署名 4.0 国际许可协议 进行许可
标签: 暂无
最后更新:2023年 3月 15日

周凯

这个人很懒,什么都没留下

打赏 点赞
< 上一篇
下一篇 >

文章评论

razz evil exclaim smile redface biggrin eek confused idea lol mad twisted rolleyes wink cool arrow neutral cry mrgreen drooling persevering
取消回复

COPYRIGHT © 2022-现在 周凯,个人博客. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang

蒙ICP备18004897号