dprgarner / tech-radar-generator

A library that generates an interactive radar, inspired by http://thoughtworks.com/radar/
GNU Affero General Public License v3.0
59 stars 21 forks source link

[TASK] Make assets relative #2

Closed afoeder closed 5 years ago

afoeder commented 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>
dprgarner commented 5 years ago

This looks good to me. Thanks!