aboutsummaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorDouglas Silva <[email protected]>2023-07-24 15:26:09 -0300
committerGitHub <[email protected]>2023-07-24 21:26:09 +0300
commit57ddb42bafe3cbc4b983fc8acd10b8561218cea0 (patch)
treee284232ff10d19286d1047abe73663279c684c22 /site
parentcc5a8a903612e9c0de92238ac17dcb083efce138 (diff)
downloadbootstrap-57ddb42bafe3cbc4b983fc8acd10b8561218cea0.tar.xz
bootstrap-57ddb42bafe3cbc4b983fc8acd10b8561218cea0.zip
Fix postcss plugin options (#38947)
Diffstat (limited to 'site')
-rw-r--r--site/content/docs/5.3/getting-started/webpack.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/content/docs/5.3/getting-started/webpack.md b/site/content/docs/5.3/getting-started/webpack.md
index bd539b891..0709b7ae5 100644
--- a/site/content/docs/5.3/getting-started/webpack.md
+++ b/site/content/docs/5.3/getting-started/webpack.md
@@ -191,7 +191,7 @@ Importing Bootstrap into Webpack requires the loaders we installed in the first
loader: 'postcss-loader',
options: {
postcssOptions: {
- plugins: () => [
+ plugins: [
autoprefixer
]
}