Update webpack.config.mjs

This commit is contained in:
Eugene 2025-01-06 12:13:58 +01:00
parent fe46ed7847
commit 53ca484ca6
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -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())))