You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
5 months ago | |
---|---|---|
.husky | 10 months ago | |
.vscode | 10 months ago | |
public | 10 months ago | |
src | 5 months ago | |
.editorconfig | 10 months ago | |
.env.development | 7 months ago | |
.env.production | 7 months ago | |
.eslintignore | 10 months ago | |
.eslintrc-auto-import.json | 10 months ago | |
.eslintrc.cjs | 10 months ago | |
.gitignore | 10 months ago | |
.prettierignore | 10 months ago | |
.prettierrc.cjs | 10 months ago | |
.stylelintignore | 10 months ago | |
.stylelintrc.cjs | 10 months ago | |
CHANGELOG.md | 10 months ago | |
README.md | 7 months ago | |
commitlint.config.cjs | 10 months ago | |
index.html | 9 months ago | |
package.json | 10 months ago | |
tsconfig.json | 10 months ago | |
uno.config.ts | 10 months ago | |
vite.config.ts | 10 months ago |
README.md
浙江itms系统ui版本登录提示
# 浙江itms系统登录统一使用浙江4A验证系统
如果不使用4A验证 请在url输入 http://172.20.133.149:8080/login
ip地址及端口请根据实际情况自行调整
项目启动
# 安装依赖
pnpm install
# 启动运行
pnpm run dev
项目部署
# 项目打包
pnpm run build:prod
# 上传文件至远程服务器
将打包生成在 `dist` 目录下的文件拷贝至 `/usr/share/nginx/html` 目录
# nginx.cofig 配置
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
# 反向代理配置
location /prod-api/ {
proxy_pass http://xxx.xxx.xx/;
}
}