赞
踩
version:
antdv :3.2.20
环境版本:
$ node -v
v20.9.0
$ npm -v
10.1.0
制作过程:
https://github.com/vueComponent/ant-design-vue/tree/3.x
code 的下拉中 downloadzip
2.删除pnpm-lock.yaml后安装依赖
2. 解压后修改package.json
修改前
"site": "npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://3x.antdv.com/",
修改后
"site2": "vite build site --base=/",
server {
listen 8004;
location / {
try_files $uri $uri/ /index.html;
root html/dist;
index index.html index.htm;
}
}
备注:
如果语言切换不生效可修改源代码的src 中i18n.js 后重新打包
附件