Replies: 1 comment 1 reply
-
Mini-css v2.0 should solve this with its ability to resolve public path auto. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I add image (boutique.jpg) in asstes folder in the remote (angular project -50001 port) and refer in css of remote code (.html file) using
.styleBoutique{
background:url('../../assets/boutique.jpg');
When remote is rendered in the host (angular project port 5000) website the css style changes to
{
background: url(boutique.jpg); //* note there is no assets folder reference or even reference to remotes port *//
and fails to load.
How to resolve this issue?
Beta Was this translation helpful? Give feedback.
All reactions