jonataslaw / dart-server-nano

A light, fast, and friendly server written in Dart.
MIT License
23 stars 4 forks source link

flutter web api cors #10

Closed vimptech-git closed 5 months ago

vimptech-git commented 10 months ago

please share cors dart code

jonataslaw commented 5 months ago

Hello, I'm not sure if I understand what you're looking for, but you can add Cors with a single line, and configure everything through the middleware.

final server = Server();
server.use(Cors());
jonataslaw commented 5 months ago

Issue closed due to inactivity.