aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--site/content/docs/5.0/getting-started/webpack.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/site/content/docs/5.0/getting-started/webpack.md b/site/content/docs/5.0/getting-started/webpack.md
index c67152f8d..693f96109 100644
--- a/site/content/docs/5.0/getting-started/webpack.md
+++ b/site/content/docs/5.0/getting-started/webpack.md
@@ -55,10 +55,12 @@ For Bootstrap to compile, make sure you install and use the required loaders: [s
}, {
loader: 'postcss-loader', // Run postcss actions
options: {
- plugins: function () { // postcss plugins, can be exported to postcss.config.js
- return [
- require('autoprefixer')
- ];
+ postcssOptions: {
+ plugins: function () { // post css plugins, can be exported to postcss.config.js
+ return [
+ require('autoprefixer')
+ ];
+ }
}
}
}, {