Debug School

rakesh kumar
rakesh kumar

Posted on

Why Images Don’t Load in Flutter or JavaScript Apps: Fixing CORS for Laravel Public Storage

Add in backend .htaccess

# CORS for images (add this at the very top)
<FilesMatch "\.(jpg|jpeg|png|webp|gif)$">
    Header set Access-Control-Allow-Origin "*"
</FilesMatch>

<IfModule mod_rewrite.c>
    RewriteEngine On
    # ... your current rules ...
</IfModule>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)