Skip to content

Commit

Permalink
Update utils.js (#6391)
Browse files Browse the repository at this point in the history
  • Loading branch information
huhuanming authored Dec 22, 2024
1 parent 3a326f1 commit f451be0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions development/webpack/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
};

0 comments on commit f451be0

Please sign in to comment.