charles_c 5 months ago
parent
commit
725e854f59
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/config.ts

+ 1 - 1
config/config.ts

@@ -13,7 +13,7 @@ type Env = 'dev' | 'prod';
 // 定义 API URL 配置
 const API_URL: Record<Env, string> = {
   dev: 'http://localhost:3000',
-  prod: 'https://1919com.com',
+  prod: 'https://lvyin20.tv',
 };
 
 /**