diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..7e3649a
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,16 @@
+# http://editorconfig.org
+root = true
+
+[*]
+indent_style = space
+indent_size = 2
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+
+[*.md]
+trim_trailing_whitespace = false
+
+[Makefile]
+indent_style = tab
diff --git a/.env.development b/.env.development
index 2dcc736..650b8fb 100644
--- a/.env.development
+++ b/.env.development
@@ -1,9 +1,9 @@
-# 开发环境配置
+#开发环境配置
VITE_APP_ENV = 'development'
#接口地址
VITE_APP_API=/api
#页面基础路径
-VITE_APP_BASE=/
\ No newline at end of file
+VITE_APP_BASE=/
diff --git a/.env.production b/.env.production
index 56ac7f9..2d4163e 100644
--- a/.env.production
+++ b/.env.production
@@ -1,11 +1,13 @@
-# 生产环境配置
+#生产环境配置
VITE_APP_ENV = 'production'
-#接口地址
-VITE_APP_API=
+#接口地址前缀
+#填写前缀 [/api] 需要用nginx进行反向代理
+#填写地址 [https://api.bladex.vip] 只需要保证接口支持跨域即可, 无需再做代理
+VITE_APP_API=/api
#页面基础路径
VITE_APP_BASE=/
# 是否在打包时开启压缩,支持 gzip 和 brotli
-VITE_BUILD_COMPRESS = gzip
\ No newline at end of file
+VITE_BUILD_COMPRESS = gzip
diff --git a/.gitignore b/.gitignore
index 389f884..07c8fe4 100755
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,25 @@
-node_modules
.DS_Store
-dist
-dist-ssr
-*.local
-build.sh
\ No newline at end of file
+node_modules
+/dist
+
+/tests/e2e/videos/
+/tests/e2e/screenshots/
+
+# local env files
+.env.local
+.env.*.local
+
+# Log files
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw*
+*.lock
diff --git a/build.sh b/build.sh
new file mode 100755
index 0000000..3f96fcd
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+echo "====================打包文件===================="
+yarn build
+echo "====================传输文件===================="
+
+scp -P 22 -r ./dist/** root@192.168.0.188:/docker/nginx/web/html
+
+echo "====================部署完毕===================="
diff --git a/index.html b/index.html
index 6d45ce3..f11b9a6 100755
--- a/index.html
+++ b/index.html
@@ -5,8 +5,9 @@
-
-
+
+
+
@@ -31,4 +32,4 @@