We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26e0bd9 commit f9a90d3Copy full SHA for f9a90d3
packages/docusaurus/src/commands/build.ts
@@ -325,6 +325,10 @@ async function getBuildClientConfig({
325
bundleAnalyzer: cliOptions.bundleAnalyzer ?? false,
326
});
327
let {config} = result;
328
+ config = executePluginsConfigurePostCss({
329
+ plugins,
330
+ config,
331
+ });
332
config = executePluginsConfigureWebpack({
333
plugins,
334
config,
@@ -340,10 +344,6 @@ async function getBuildServerConfig({props}: {props: Props}) {
340
344
props,
341
345
342
346
343
- config = executePluginsConfigurePostCss({
- plugins,
- config,
- });
347
348
349
0 commit comments