From 3bfe7c2428e068c31bc9f4b3087e2def41768178 Mon Sep 17 00:00:00 2001 From: Erdal G Date: Tue, 26 Sep 2017 14:55:00 +0200 Subject: [PATCH] Update bootstrap.rst As Webpack warns: > DEPRECATION enableSassLoader: "resolve_url_loader" is deprecated. Please use "resolveUrlLoader" instead. --- frontend/encore/bootstrap.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 + }) ;