Exploring an existing ReactJS website, I've noticed that many images are rendered using the CSS content property. While examining the CSS file in VSCode, I've come across classes where the content is displayed as "". I'm uncertain whether I need a plugin to view the actual content, as I haven't found a way to do so yet.
Although I can change the content attribute to display a different image, I would like to locate where this content is being generated so that I can make changes at the source. The website is integrated with Contentful, but assets seem to be called directly on pages rather than in the CSS.
.fa-discord:after {
content: "";
}
I am eager to find out where this image is stored or generated. Any assistance would be greatly appreciated!