When I build project by ng build command in dist folder I got my js files both with all other resources, but I want to move all images and fonts in separate folder like assets. Can anybody help me?
Update:
angular.json
"assets": [
"src/favicon.ico",
"src/assets"
],
in scss of component I have:
background-image: url('assets/img/no-notifications.svg');
but in result I got in dist folder next file:
no-notifications.7e08682a570485d1c108.svg
Goal is keep image path same as he has been specified in scss file:
assets/img/no-notifications.svg
