Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
"clear": "mkdir -p ./public && rm -rf ./public/* .cache .parcel-cache",
"start": "react-scripts start",
"watch:docker": "./watch.docker.js",
"build": "npm run clear && cp src/*.html ./public/. && cp src/*.ico ./public/. && cp src/*.css ./public/. && parcel build src/index.js --dist-dir ./public --no-source-maps",
"build:debug": "npm run clear && cp src/*.html ./public/. && cp src/*.ico ./public/. && cp src/*.css ./public/. && parcel build src/index.js --dist-dir ./public",
"watch": "npm run clear && cp src/*.html ./public/. && cp src/*.ico ./public/. && cp src/*.css ./public/. && parcel watch src/index.js --dist-dir ./public/",
"build": "npm run clear && cp src/*.html ./public/. && cp src/favicon.png ./public/. && cp src/*.css ./public/. && parcel build src/index.js --dist-dir ./public --no-source-maps",
"build:debug": "npm run clear && cp src/*.html ./public/. && cp src/favicon.png ./public/. && cp src/*.css ./public/. && parcel build src/index.js --dist-dir ./public",
"watch": "npm run clear && cp src/*.html ./public/. && cp src/favicon.png ./public/. && cp src/*.css ./public/. && parcel watch src/index.js --dist-dir ./public/",
"test": "npx jest",
"test:smartcontracts": "npx hardhat test"
},
Expand Down
Empty file removed src/favicon.ico
Empty file.
Binary file added src/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
content="Point Social was created using create-react-app"
/>
<title>Welcome to Point Social</title>
<link rel="pointsocial icon" type="image/jpg" href="favicon.ico"/>
<link rel="shortcut icon" href="favicon.png" />
<link rel="apple-touch-icon" href="favicon.png" />
<script defer src="index.js"></script>
<link rel="stylesheet" href="index.css">
</head>
Expand Down