Skip to content

Commit b18726b

Browse files
committed
minor #8425 Update bootstrap.rst (Erdou)
This PR was submitted for the 3.4 branch but it was merged into the 3.3 branch instead (closes #8425). Discussion ---------- Update bootstrap.rst As Webpack warns: > DEPRECATION enableSassLoader: "resolve_url_loader" is deprecated. Please use "resolveUrlLoader" instead. Commits ------- f5502fa Update bootstrap.rst
2 parents 870d6a7 + f5502fa commit b18726b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/encore/bootstrap.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ file into ``global.scss``. You can even customize the Bootstrap variables first!
3535
in the ``bootstrap`` directory instead - e.g. ``~bootstrap-sass/assets/stylesheets/bootstrap/alerts``.
3636

3737
After including ``bootstrap-sass``, your Webpack builds might become slow. To fix
38-
this, you can use the ``resolve_url_loader`` option:
38+
this, you can use the ``resolveUrlLoader`` option:
3939

4040
.. code-block:: diff
4141
4242
// webpack.config.js
4343
Encore
4444
+ .enableSassLoader(function(sassOptions) {}, {
45-
+ resolve_url_loader: false
45+
+ resolveUrlLoader: false
4646
+ })
4747
;
4848

0 commit comments

Comments
 (0)