I have one angular component which is using some external styles sheet, along with component's own style sheet. I am importing external css file in component's .scss file at top like shown below (highlighted). This is working fine and css is getting applied to component's elements. However this style sheet is environment specific. For example:
- In local it is http://localhost:8080/styles.css
- On Dev it should be @import http://dev-server/styles.css
- On Test environment it should be @import http://test-server/styles.css
I am not sure how can I pass this path dynamically based on environment. Please suggest.
