This commit is contained in:
Alan Hamlett
2023-10-17 21:56:16 +02:00
parent c57818bec7
commit 625410df1a
4 changed files with 8 additions and 4 deletions

View File

@@ -75,5 +75,9 @@ export default (
arv: Record<string, string>,
): webpack.Configuration[] => {
const isProd = arv.mode !== 'development';
return [getConfigByBrowser(isProd, 'chrome'), getConfigByBrowser(isProd, 'firefox'), getConfigByBrowser(isProd, 'edge')];
return [
getConfigByBrowser(isProd, 'chrome'),
getConfigByBrowser(isProd, 'firefox'),
getConfigByBrowser(isProd, 'edge'),
];
};