How to get filename of the rendered font CSS?
Is it possible to get the filename of the rendered font of an element? Example: @font-face { font-family: 'MyFont'; src: url('../../public/fonts/MyFont-Bold.woff2') format('woff2'); font-weight: bold; font-style: normal; } @font-face { font-family: 'MyFont'; src: url('../../public/fonts/MyFont-Italic.woff2') format('woff2'); font-weight: normal; font-style: italic; } .my-font-bold…