How to run Flutter web on intranet?

Viewed 37

I try to use Chrome (web-javascript) on vs code to debug my application.

enter image description here

But Chrome (web-javascript) cannot connect to the intranet.

enter image description here

My app try to look up an internal route, but it cannot reach.

final connection = await InternetAddress.lookup(internalRoute);

show error

Unsupported operation: InternetAddress.lookup

How to fix this?

1 Answers

enter command 'git config --enable-web' on terminal and try to do run flutter application.

Related