From f451be0977b4ca1e56b285521e885437411ff291 Mon Sep 17 00:00:00 2001 From: huhuanming Date: Sun, 22 Dec 2024 10:08:48 +0800 Subject: [PATCH] Update utils.js (#6391) --- development/webpack/utils.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/development/webpack/utils.js b/development/webpack/utils.js index 7787387ddbc..9f9983f23a0 100644 --- a/development/webpack/utils.js +++ b/development/webpack/utils.js @@ -41,8 +41,7 @@ exports.createResolveExtensions = function ({ platform, configName }) { ]); }; -exports.getOutputFolder = function ({ isManifestV3 }) { - // isManifestV3 ? `${buildTargetBrowser}_v3` : buildTargetBrowser, +exports.getOutputFolder = function () { const buildTargetBrowser = TARGET_BROWSER; - return isManifestV3 ? `${buildTargetBrowser}_v3` : buildTargetBrowser; + return `${buildTargetBrowser}_v3`; };