美文网首页VUE
vue3创建项目vue create project过程很慢加载

vue3创建项目vue create project过程很慢加载

作者: adrainHsu | 来源:发表于2022-02-24 11:30 被阅读0次

    三种方法:推荐第三种

    方法一:

    修改vueclie构建的npm源:
    打开C:\Users\admin.vuerc文件

    {
      "useTaobaoRegistry": false,//打开关闭淘宝npm源
      "packageManager": "npm",
      "presets": {
        "vue setting": {
          "useConfigFiles": false,
          "plugins": {
            "@vue/cli-plugin-babel": {},
            "@vue/cli-plugin-eslint": {
              "config": "standard",
              "lintOn": [
                "save"
              ]
            }
          }
        }
      },
      "latestVersion": "3.10.0",
      "lastChecked": 1565851966268
    }\
    

    useTaobaoRegistry配置如果是true改为false就可以了,或者情况相反的改为true。

    方法二:

    1.安装cgr切换源

    npm install -g cgr
    

    2.查看有哪些源

    cgr ls
    

    3.切换源

    cgr use taobao
    

    方法三:

    上两种方法有时会不成功,推荐使用方法三
    安装 开发者边车 (dev-sidecar)
    开发者边车,命名取自service-mesh的service-sidecar,意为为开发者打辅助的边车工具,通过本地代理的方式将https请求代理到一些国内的加速通道上
    支持windows,MAC

    1.安装方法及说明:
    稳步github

    https://github.com/docmirror/dev-sidecar
    

    如github打不开,可以 用Gitee镜像地址

    https://gitee.com/docmirror/dev-sidecar
    

    2.安装成功后,打开dev-sidecar软件
    3.在首页默认模式中开启npm加速


    image.png

    4.再用vue create project创建项目
    注:创建项目前反npm源回复到默认状态,不要用taobao或其它了

    相关文章

      网友评论

        本文标题:vue3创建项目vue create project过程很慢加载

        本文链接:https://www.haomeiwen.com/subject/vgjzlrtx.html