mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-30 10:48:05 +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,
|
bundleAnalyzer: cliOptions.bundleAnalyzer ?? false,
|
||||||
});
|
});
|
||||||
let {config} = result;
|
let {config} = result;
|
||||||
|
config = executePluginsConfigurePostCss({
|
||||||
|
plugins,
|
||||||
|
config,
|
||||||
|
});
|
||||||
config = executePluginsConfigureWebpack({
|
config = executePluginsConfigureWebpack({
|
||||||
plugins,
|
plugins,
|
||||||
config,
|
config,
|
||||||
|
@ -340,10 +344,6 @@ async function getBuildServerConfig({props}: {props: Props}) {
|
||||||
props,
|
props,
|
||||||
});
|
});
|
||||||
let {config} = result;
|
let {config} = result;
|
||||||
config = executePluginsConfigurePostCss({
|
|
||||||
plugins,
|
|
||||||
config,
|
|
||||||
});
|
|
||||||
config = executePluginsConfigureWebpack({
|
config = executePluginsConfigureWebpack({
|
||||||
plugins,
|
plugins,
|
||||||
config,
|
config,
|
||||||
|
|
Loading…
Add table
Reference in a new issue