Skip to content

Commit

Permalink
Fix relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
RUSHIGoswami committed Nov 20, 2024
1 parent 3baf8dc commit 913ca09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./vite.svg" />
<link rel="icon" type="image/svg+xml" href="vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rushi - Portfolio</title>
<script type="module" crossorigin src="./assets/index-BFhp3yMO.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-BFX-wx5F.css">
<script type="module" crossorigin src="/portfolio/assets/index-BFhp3yMO.js"></script>
<link rel="stylesheet" crossorigin href="/portfolio/assets/index-BFX-wx5F.css">
</head>
<body>
<div id="root"></div>
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rushi - Portfolio</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<script type="module" src="src/main.jsx"></script>
</body>
</html>

0 comments on commit 913ca09

Please sign in to comment.