From 0b19ccb700668038a35ffca1989130fba0ad01a3 Mon Sep 17 00:00:00 2001 From: abearxiong Date: Wed, 4 Jun 2025 12:39:15 +0800 Subject: [PATCH] remove basicSsl --- astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 9ea9c5b..9ff05ba 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -10,7 +10,7 @@ const isDev = process.env.NODE_ENV === 'development'; const plugins = [tailwindcss()]; const isCNB = process.env.CNB === 'true'; if (isDev && !isCNB) { - plugins.push(basicSsl()); + // plugins.push(basicSsl()); } let target = process.env.VITE_API_URL || 'https://localhost:51015'; const apiProxy = { target: target, changeOrigin: true, ws: true, rewriteWsOrigin: true, secure: false, cookieDomainRewrite: 'localhost' };