build(development): 修改开发环境 API 地址并添加新的构建脚本

- 将开发环境 API 地址从 http://127.0.0.1:8000 改为 http://127.0.0.1:8001- 在 package.json 中添加了 build:dev 脚本,用于开发环境的构建
This commit is contained in:
1638245306
2025-03-17 14:40:12 +08:00
parent bc7bc3cda6
commit 4c644ae8cb
2 changed files with 2 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
ENV = 'development'
# 本地环境接口地址
VITE_API_URL = 'http://127.0.0.1:8000'
VITE_API_URL = 'http://127.0.0.1:8001'
# 是否启用按钮权限
VITE_PM_ENABLED = true