From fa656174478d4def29b09798398eef35d20a0f29 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Thu, 27 Jul 2023 11:57:08 +0100 Subject: [PATCH] Fix formatting of code blocks --- docs/developing-locally-docker.rst | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/developing-locally-docker.rst b/docs/developing-locally-docker.rst index 557810877..135e063ef 100644 --- a/docs/developing-locally-docker.rst +++ b/docs/developing-locally-docker.rst @@ -340,12 +340,16 @@ If you are using Webpack: 2. On the ``node`` service in ``local.yml``, add the following environment configuration: - environment: - - VIRTUAL_HOST=my-dev-env.local - - VIRTUAL_PORT=3000 + :: + + environment: + - VIRTUAL_HOST=my-dev-env.local + - VIRTUAL_PORT=3000 3. Add the following configuration to the ``devServer`` section of ``webpack/dev.config.js``: - client: { - webSocketURL: 'auto://0.0.0.0:0/ws', // note the `:0` after `0.0.0.0` - }, + :: + + client: { + webSocketURL: 'auto://0.0.0.0:0/ws', // note the `:0` after `0.0.0.0` + },