You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 7, 2022. It is now read-only.
Is that possible to build multiple pages at the same time? Currently out webpack.config.js is like this:
[
// partA
{
entry: {
'pageA': ...,
'pageB': ...,
'pageC': ...,
...
},
devtool: '...',
output: ...,
plugins: ...
},
// partB
{
entry: {
'pageA': ...,
'pageB': ...,
'pageC': ...,
...
},
devtool: '...',
output: ...,
plugins: ...
},
]
We we try to apply parallel-webpack, it seems partA and partB can be build in parallel. But the pages in partA or partB is still in sequential.
The text was updated successfully, but these errors were encountered: