Skip to content

Commit ec66128

Browse files
committed
Merge branch 'dev'
2 parents 7f8bc05 + 0624d26 commit ec66128

212 files changed

Lines changed: 5652 additions & 4346 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.browserslistrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
chrome >= 87
2+
edge >= 88
3+
firefox >= 78
4+
safari >= 14

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: yarn
2323

2424
- name: Build project
25-
run: yarn build
25+
run: yarn build:prod
2626

2727
- name: Add known hosts
2828
run: |

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
# 集成信息管理平台,用于将多种协议、多种系统进行耦合,通过配置服务并发布,可做到让不同厂商的系统进行最简化的系统对接
55

66
# 框架技术:
7-
- react@18.3.1
7+
- react@19.1.9
88
- antd@latest
9-
- rsbuild 构建工具
9+
- vite@latest 构建工具
1010
- zustand@latest 状态管理
1111
- sass@latest
1212
- react-router@latest
13-
- react-dom@18.3.1
13+
- react-dom@19.1.7
1414
- axios@latest
1515
- @tanstack/react-query@latest
1616
# 注意

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
33
"vcs": {
44
"enabled": false,
55
"clientKind": "git",

bun.lock

Lines changed: 297 additions & 680 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Nexus</title>
7+
<title>Nexus Admin</title>
88
</head>
99
<body>
10+
<noscript>
11+
<strong>
12+
We're sorry but doesn't work properly without JavaScript enabled. Please
13+
enable it to continue.
14+
</strong>
15+
</noscript>
1016
<div id="root"></div>
17+
<script type="module" src="/src/main.tsx"></script>
1118
</body>
12-
</html>
19+
</html>

0 commit comments

Comments
 (0)