mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 10:17:55 +02:00
fix(core): fix configurePostCss v3.2 regression (#10012)
This commit is contained in:
parent
26e0bd928c
commit
f9a90d3a26
1 changed files with 4 additions and 4 deletions
|
@ -325,6 +325,10 @@ async function getBuildClientConfig({
|
|||
bundleAnalyzer: cliOptions.bundleAnalyzer ?? false,
|
||||
});
|
||||
let {config} = result;
|
||||
config = executePluginsConfigurePostCss({
|
||||
plugins,
|
||||
config,
|
||||
});
|
||||
config = executePluginsConfigureWebpack({
|
||||
plugins,
|
||||
config,
|
||||
|
@ -340,10 +344,6 @@ async function getBuildServerConfig({props}: {props: Props}) {
|
|||
props,
|
||||
});
|
||||
let {config} = result;
|
||||
config = executePluginsConfigurePostCss({
|
||||
plugins,
|
||||
config,
|
||||
});
|
||||
config = executePluginsConfigureWebpack({
|
||||
plugins,
|
||||
config,
|
||||
|
|
Loading…
Add table
Reference in a new issue