Skip to content

Commit

Permalink
Set up GitHub Actions for deployment-14
Browse files Browse the repository at this point in the history
  • Loading branch information
amitgupta0220 committed Oct 31, 2024
1 parent 3d1ed3b commit bc39080
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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="/dist/vite.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
Expand All @@ -14,6 +14,6 @@
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/main.jsx"></script>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
7 changes: 4 additions & 3 deletions src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import App from "./App.jsx";
import "./index.css";

createRoot(document.getElementById("root")).render(
// <StrictMode>
<App />
// </StrictMode>
<StrictMode>
<div>{console.log("hey i am inside the website!")}</div>
<App />
</StrictMode>
);

0 comments on commit bc39080

Please sign in to comment.