Dropsource / monarch

Monarch is a tool for building Flutter widgets in isolation. It makes it easy to build, test and debug complex UIs.
https://monarchapp.io
MIT License
433 stars 22 forks source link

On Windows, add `--ssl-no-revoke` flag to the curl command #62

Open fertrig opened 1 year ago

fertrig commented 1 year ago

Monarch uses curl to download the UI binaries it needs for the flutter version the user is running. If the user is running Monarch on Windows and their network is behind an MITM proxy, then the curl command will fail.

The issue was first reported here: #44.

The fix is to add the --ssl-no-revoke flag to the curl command. See the accepted answer here.