欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2020-12-20

程序员文章站 2022-06-01 09:54:26
...

学习使用 Ant Design Pro 
    学习资料 https://www.cnblogs.com/7tiny/p/13444963.html
    1、安装环境
        (1)安装npm/cnpm
          

    //换资源库
    npm config set registry https://registry.npm.taobao.org
    //换成cnpm并配置资源库
    npm install -g cnpm --registry=https://registry.npm.taobao.org
    //https://www.cnblogs.com/webdragon/p/9700879.html
    npm cache clean -f
    npm install -g n
    npm install -g n --force
    //https://www.cnblogs.com/lansan0701/p/7019031.html
    cnpm rebuild node-sass


        (2)安装tyarn

    cnpm install yarn tyarn -g
    yarn config set registry https://registry.npm.taobao.org -g


        (3)安装git
        
    2、下载代码运行
 

        npx npx create-umi myapp
        //项目目录
        cd myapp
        //安装
        cnpm install
        //运行
        //cnpm run dev
        cnpm run start
        

 

推荐阅读