From c679fe5d157635c1f02bedcfc2353199d1f12977 Mon Sep 17 00:00:00 2001 From: EtienneHosman <43244960+EtienneHosman@users.noreply.github.com> Date: Tue, 18 Mar 2025 13:51:03 +0100 Subject: [PATCH] Update virtual-machine.rst Syntax error: made 'all' a string --- frontend/encore/virtual-machine.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/encore/virtual-machine.rst b/frontend/encore/virtual-machine.rst index d18026d3633..34587173b93 100644 --- a/frontend/encore/virtual-machine.rst +++ b/frontend/encore/virtual-machine.rst @@ -107,7 +107,7 @@ the dev-server. To fix this, set the ``allowedHosts`` option: // ... .configureDevServerOptions(options => { - options.allowedHosts = all; + options.allowedHosts = 'all'; }) .. warning::