From 816c94d83d346e8c2de1264c51e2e98ed1e46fe9 Mon Sep 17 00:00:00 2001
From: veiniem <97627575+veiniem@users.noreply.github.com>
Date: Thu, 29 Feb 2024 20:26:00 +0200
Subject: [PATCH] Update part12c.md
---
src/content/12/en/part12c.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/content/12/en/part12c.md b/src/content/12/en/part12c.md
index a48d7e79b77..0c7786a75a1 100644
--- a/src/content/12/en/part12c.md
+++ b/src/content/12/en/part12c.md
@@ -235,6 +235,8 @@ You can now view hello-frontend in the browser.
> **Editor's note:** hot reload might work in your computer, but it is currently known to have some [issues](https://github.com/facebook/create-react-app/issues/11879). So if it does not work for you, just continue without the hot reload support, and reload the browser when you change the frontend code. You may also use use [The Visual Studio Code Containers extension](https://code.visualstudio.com/docs/remote/containers).
+If changes made to the mounted files are not visible even after manually reloading the app in the browser, you might be able to fix this with [Watchpack API](https://github.com/webpack/watchpack) by enabling Watchpack Polling with environment variable "WATCHPACK_POLLING=true" either directly in the React project, or on the docker-compose file.
+
Next, let's move the config to a docker-compose.yml. That file should be at the root of the project as well:
```yml