Skip to content

Commit 8b99381

Browse files
committed
Updates
0 parents  commit 8b99381

File tree

11 files changed

+826
-0
lines changed

11 files changed

+826
-0
lines changed

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# 环境变量配置示例
2+
# 此文件用于说明项目需要的环境变量

.eslintrc

Whitespace-only changes.

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# 环境变量文件
16+
.env
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
# Editor directories and files
23+
.vscode/*
24+
!.vscode/extensions.json
25+
.idea
26+
.DS_Store
27+
*.suo
28+
*.ntvs*
29+
*.njsproj
30+
*.sln
31+
*.sw?

.npmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 项目根目录创建 .npmrc
2+
strict-peer-dependencies=false
3+
legacy-peer-deps=true

assets/favicon-DamB5_ds.png

932 KB
Loading

assets/index-BeukvCD5.css

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

assets/index-D2z6aPId.js

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

favicon.ico

932 KB
Binary file not shown.

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite + React + TS</title>
8+
<script type="module" crossorigin src="/assets/index-D2z6aPId.js"></script>
9+
<link rel="stylesheet" crossorigin href="/assets/index-BeukvCD5.css">
10+
</head>
11+
<body>
12+
<div id="root"></div>
13+
</body>
14+
</html>

logo.png

932 KB
Loading

vite.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)