首页 前端知识 and-design-vue 3.2.20官方离线文档(中文)

and-design-vue 3.2.20官方离线文档(中文)

2024-07-24 23:07:35 前端知识 前端哥 70 121 我要收藏
version:
antdv :3.2.20

环境版本:
$ node -v
v20.9.0
$ npm -v
10.1.0

制作过程:

  1. github下载压缩包
https://github.com/vueComponent/ant-design-vue/tree/3.x

code 的下拉中  downloadzip

2.删除pnpm-lock.yaml后安装依赖
2. 解压后修改package.json

  • 由于本机直接运行npm run site 会报 “.” is not xxx
  • 如果不修改能直接运行则直接运行site 命令
修改前
"site": "npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://3x.antdv.com/",
修改后
"site2": "vite build site --base=/",
  1. 在site 目录下生成的dist 拷贝到nginx 的html 中
  2. 修改nginx 配置文件 如下
  • try_files $uri $uri/ /index.html; —解决刷新页面路由丢失问题
server {
        listen       8004;
        location / {
			try_files $uri $uri/ /index.html;
            root   html/dist;
            index  index.html index.htm;
        }
    }
  1. 启动nginx.exe 后访问 http://localhost:8004
  2. 点击english 切换语言 即可

备注:
如果语言切换不生效可修改源代码的src 中i18n.js 后重新打包
附件

转载请注明出处或者链接地址:https://www.qianduange.cn//article/14286.html
评论
发布的文章

JSON File 格式详解

2024-08-08 23:08:37

nvm安装node一直没有npm

2024-08-08 23:08:25

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!