diff --git a/frontend/encore/bootstrap.rst b/frontend/encore/bootstrap.rst index a9eaaad4b0b..c8843f44eb2 100644 --- a/frontend/encore/bootstrap.rst +++ b/frontend/encore/bootstrap.rst @@ -35,14 +35,14 @@ file into ``global.scss``. You can even customize the Bootstrap variables first! in the ``bootstrap`` directory instead - e.g. ``~bootstrap-sass/assets/stylesheets/bootstrap/alerts``. After including ``bootstrap-sass``, your Webpack builds might become slow. To fix -this, you can use the ``resolve_url_loader`` option: +this, you can use the ``resolveUrlLoader`` option: .. code-block:: diff // webpack.config.js Encore + .enableSassLoader(function(sassOptions) {}, { - + resolve_url_loader: false + + resolveUrlLoader: false + }) ;