https://github.com/anmolsukki/hacker-next
Next Js Hacker Next Project
https://github.com/anmolsukki/hacker-next
nextjs
Last synced: about 1 month ago
JSON representation
Next Js Hacker Next Project
- Host: GitHub
- URL: https://github.com/anmolsukki/hacker-next
- Owner: anmolsukki
- Created: 2020-05-04T02:18:41.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-25T09:38:32.000Z (over 1 year ago)
- Last Synced: 2025-02-02T05:41:35.434Z (3 months ago)
- Topics: nextjs
- Language: JavaScript
- Homepage: https://hackers-apps.herokuapp.com/
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### hacker-next project
### how to set web app manifest generator icon url
icons URL
```
/static/icons/icon-512x512.png
```.extension are file extension
Sizes = 512x512
Type = image/png
Add Another
URL = /static/icons/icon-192x192.png
Sizes = 912x192
Type = image/png
### Install Package for Service-Worker
```
npm i --save sw-precache-webpack-plugin
```### Heroku Configuration
```
npm i -g herokuheroku login
```go to project directory
```
git init
```add line in package.json
"heroku-postbuild": "next build"
then run command
```
git add .git commit -m "heroku deployment"
heroku git:remote -a hackers-apps // this is remote command provided by heroku
git push heroku master
```