Skip to content

Commit 269be93

Browse files
committed
add btc icon
1 parent 87da6c3 commit 269be93

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

client/public/btcImg.ico

10.6 KB
Binary file not shown.

client/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
1010
-->
1111
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
12-
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
12+
<link rel="shortcut icon" href="%PUBLIC_URL%/btcImg.ico">
1313
<!--
1414
Notice the use of %PUBLIC_URL% in the tags above.
1515
It will be replaced with the URL of the `public` folder during the build.

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ if (process.env.NODE_ENV === 'production') {
8686

8787
// Handle React routing, return all requests to React app
8888
app.get('*', function(req, res) {
89-
res.sendFile(path.join(__dirname, 'client/build', 'index.html'));
89+
res.sendFile(path.join(__dirname, '/client/build', 'index.html'));
9090
});
9191
}
9292

0 commit comments

Comments
 (0)