Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
203 views
in Technique[技术] by (71.8m points)

Angular use image url in scss not working

I have an angular library that contains assets and a scss theme with in the call to an image

  background-image: url(assets/img/bg-resize.png);

My problem is that this way of doing things works in an Angular 9 project but not in an Angular 10 project. I would have liked a solution that works in both Angular 9 and Angular 10

question from:https://stackoverflow.com/questions/65881594/angular-use-image-url-in-scss-not-working

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try using:

  background-image: url('/assets/img/bg-resize.png');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...