I have a Chrome Extension I am in the midst of porting over to a Firefox AddOn. The extension is built with React and Webpack. The font references in the SCSS files (and generated CSS files) are using this to reference the URLs:
src: url("chrome-extension://__MSG_@@extension_id__/static/fonts/Muli-Regular.ttf") format("truetype");
And this works great for Chrome. However, in the ported version to Firefox, the fonts don't load. How do I reference the fonts location in Firefox?
chrome-extension://__MSG_@@extension_id__and using the path without the prefix works fine. - TWLATL