How to construct background image URL using CSS variable in a SCSS file Angular
In Angular + single-spa application want to construct a image url in SCSS file using a CSS variable Current Implementation: .image { content: ''; background-image: url('/assets/images/edit.svg'); width: 12px; height: 6px; cursor: pointer; } Its loading as http://localhost:4200/assets/images/edit.svg - SHELL application…