Closed afoeder closed 5 years ago
This removes the leading / in the assets reference of the built HTML document since it might not always be deployed on a web path root, therefore fixing incorrect references.
Before (excerpt):
<link href="/images/favicon.ico" rel="icon"/> <link href="/main.c9201272e274aa6efca8.css" rel="stylesheet"></head> <body> <script type="text/javascript" src="/main.c9201272e274aa6efca8.js"></script></body>
After:
<link href="images/favicon.ico" rel="icon"/> <link href="main.c9201272e274aa6efca8.css" rel="stylesheet"></head> <body> <script type="text/javascript" src="main.c9201272e274aa6efca8.js"></script></body>
This looks good to me. Thanks!
This removes the leading / in the assets reference of the built HTML document since it might not always be deployed on a web path root, therefore fixing incorrect references.
Before (excerpt):
After: