Skip to content

Commit a765fe8

Browse files
authored
fix: Typo
Updated note regarding Hot reload issues with Flutter versions 3.35 and later when using a reverse proxy.
1 parent 91373a9 commit a765fe8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To run a Flutter app execute:
1616
flutter run --debug --hot -d web-server --web-hostname 0.0.0.0 --web-port 8080
1717
```
1818

19-
NB: Due to some issues with Hot reload and Hot restart on the latest Flutter versions since 3.35 and later on when you are serving your project behind a reversed proxy like Traefik via https you might want to avoid browser errors like "Mixed Content... requested an insecure XMLHttpRequest endpoint" adding `--no-web-experimental-hot-reload` to the command:
19+
NB: Due to some issues with Hot reload and Hot restart on the latest Flutter versions since 3.35 and later on when you are serving your project behind a reverse proxy like Traefik via https you might want to avoid browser errors like "Mixed Content... requested an insecure XMLHttpRequest endpoint" adding `--no-web-experimental-hot-reload` to the command:
2020
```shell
2121
flutter run --debug --hot -d web-server --web-hostname 0.0.0.0 --web-port 8080 --no-web-experimental-hot-reload
2222
```

0 commit comments

Comments
 (0)