I'm developing an angular (v.10) application which serves a bunch of static files (like '/assets/').
In production, those static files will be served by the backend, but in development we need the ng serve to fill this gap.
Until now I had no special requirement for the filenames, so all I need to do declare a new entry in "assets" configuration (in angular.json).
But now my application need to access some files like "content.json?__locale=pt". It would be no problem on ext4 filesystems. But I'm the only one in my team working on linux; the others are working on Windows machines, with NTFS, which forbids the '?' character.
I was thinking of storing files as "content.json___locale=pt", but I need the ng serve to rewrite incoming url "content.json?__locale=pt" to "content.json___locale=pt".
Is there any way to do it?