Browse Source

Update webpack.config.mjs

Eugene 10 months ago
parent
commit
53ca484ca6
1 changed files with 1 additions and 2 deletions
  1. 1 2
      webpack.config.mjs

+ 1 - 2
webpack.config.mjs

@@ -11,5 +11,4 @@ const paths = [
 
 paths.forEach(x => log.info(`Using config: ${x}`))
 
-const config = await Promise.all(paths.map(x => import(x).then(x => x.default())))
-export default () => config
+export default () => Promise.all(paths.map(x => import(x).then(x => x.default())))