From 546dacdb15ebce6d3587b9035478b520bd265b3a Mon Sep 17 00:00:00 2001 From: qikongjian Date: Wed, 17 Sep 2025 15:10:45 +0800 Subject: [PATCH] =?UTF-8?q?apiBaseUrl=E8=B5=B0process.env.NEXT=5FPUBLIC=5F?= =?UTF-8?q?CUT=5FURL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/export-service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/export-service.ts b/utils/export-service.ts index 69738a8..b225455 100644 --- a/utils/export-service.ts +++ b/utils/export-service.ts @@ -115,8 +115,8 @@ export class VideoExportService { this.config = { maxRetries: config.maxRetries || 3, pollInterval: config.pollInterval || 5000, // 5秒轮询 - apiBaseUrl: 'https://smartcut.api.movieflow.ai', - //apiBaseUrl: process.env.NEXT_PUBLIC_CUT_URL || || 'https://smartcut.api.movieflow.ai' + // apiBaseUrl: 'https://smartcut.api.movieflow.ai', + apiBaseUrl: process.env.NEXT_PUBLIC_CUT_URL || 'https://smartcut.api.movieflow.ai' }; }