Skip to content

Commit

Permalink
Merge pull request #22 from sebe324/bugfix
Browse files Browse the repository at this point in the history
Fixed icon issue
  • Loading branch information
iByteABit256 authored Mar 30, 2024
2 parents 256c48e + 8621c2f commit e3c3688
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 20 deletions.
19 changes: 2 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"peerjs": "^1.5.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-favicon": "^2.0.3",
"react-scripts": "^5.0.1"
},
"browserslist": {
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tic Tac Toes</title>
<link rel="icon" href="./favicon.ico?v=2"/>
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 0 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import React, { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./styles.css";
import Favicon from "react-favicon";

import App from "./app";

const root = createRoot(document.getElementById("root"));
root.render(
<StrictMode>
<Favicon url="./favicon.ico" />
<App />
</StrictMode>,
);

0 comments on commit e3c3688

Please # to comment.