Skip to content

Commit 6ae4845

Browse files
Replace %PUBLIC_URL% with ./ for correct paths
1 parent 6763076 commit 6ae4845

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-16" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
5+
<link rel="icon" href="./favicon.ico" />
66
<link
77
rel="stylesheet"
88
href="https://fonts.googleapis.com/icon?family=Material+Icons"
@@ -13,12 +13,12 @@
1313
name="description"
1414
content="Decentralized IDO launchpad platform"
1515
/>
16-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
16+
<link rel="apple-touch-icon" href="./logo192.png" />
1717
<!--
1818
manifest.json provides metadata used when your web app is installed on a
1919
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
2020
-->
21-
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
21+
<link rel="manifest" href="./manifest.json" />
2222
<!--
2323
Notice the use of %PUBLIC_URL% in the tags above.
2424
It will be replaced with the URL of the `public` folder during the build.
@@ -28,9 +28,9 @@
2828
work correctly both with client-side routing and a non-root public URL.
2929
Learn how to configure a non-root public URL by running `npm run build`.
3030
-->
31-
<script src="%PUBLIC_URL%/vendor/react.production.min.js"></script>
32-
<script src="%PUBLIC_URL%/vendor/react-dom.production.min.js"></script>
33-
<script src="%PUBLIC_URL%/vendor/react-bootstrap.min.js"></script>
31+
<script src="./vendor/react.production.min.js"></script>
32+
<script src="./vendor/react-dom.production.min.js"></script>
33+
<script src="./vendor/react-bootstrap.min.js"></script>
3434

3535
<title>IDOFactory</title>
3636
</head>

0 commit comments

Comments
 (0)