I had inherited an old project at work that uses the Font Awesome library on version 5.3.1.
The CSS file that comes with the library is called font-awesome.min.css and as you can tell from the extension is a miniaturized version of the CSS, which basically means that all the CSS styles are in a single line, which makes it almost impossible to read.
AFAIK, a .min usually comes with a .map file that sets the rules to translate the .min file to a readable version of the CSS file. That is why I am looking for the .map file for this version of Font Awesome (5.3.1) but I can not find it on the Internet.
I had tried these official websites with no luck:
I did not see the .map file in the official release.
¿Is there any way to generate this file? Working with the miniaturized version is very uncomfortable.
Also, I would like to know if my question does make sense or if I do need to know other stuff related to my question. I have a few experience with front-end, and I already had this problem with .js files also miniaturized, but I managed to find the .maps for them. It seems that the old owner of the project did not care about working with .min files...