From 5b193000f4f2d5e8149bcc2295441ba9a4fbcf10 Mon Sep 17 00:00:00 2001 From: Karsten Gohm Date: Wed, 14 Jun 2017 11:01:11 +0200 Subject: [PATCH] resolve_url_loader codeblock did not contain valid javascript is ```'resolve_url_loader' => false``` should be ```'resolve_url_loader': false``` --- frontend/encore/bootstrap.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/encore/bootstrap.rst b/frontend/encore/bootstrap.rst index d3966fe7fa4..7f60e607d88 100644 --- a/frontend/encore/bootstrap.rst +++ b/frontend/encore/bootstrap.rst @@ -42,7 +42,7 @@ this, you can use the ``resolve_url_loader`` option: // webpack.config.js Encore + .enableSassLoader({ - + 'resolve_url_loader' => false + + 'resolve_url_loader': false + }) ;