Open
Description
If I want to share images/fonts between my web and native apps I need to put them in the src/app
folder, as otherwise the {N} app won’t be able to access them.
Angular web apps expect their images/fonts to be in the src/assets
folder.
I’m not sure how to best consolidate this. My solution was to create both src/app/fonts
and src/app/images
folders, and to add both to the "assets"
in my angular.json
file. We might want to consider doing these steps by default.