config: 更新服务器地址配置

- 将 SOCKET_URL 从 server.websoft.top 更新为 glt-server.websoft.top
- 更新用户导入模板下载链接的服务器地址
- 修改 Vite 代理配置中的 API 目标地址为新服务器
This commit is contained in:
2026-02-13 21:33:03 +08:00
parent b108849a10
commit 0dc0941673
3 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ export default defineConfig(({ command }) => {
// 代理配置
proxy: {
'/api': {
target: process.env.VITE_API_URL || 'https://server.websoft.top',
target: process.env.VITE_API_URL || 'https://glt-server.websoft.top',
changeOrigin: true,
secure: false,
configure: (proxy, _options) => {