forked from octokatherine/readme.so
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Introducing PWA and offline caching! (#191)
- Loading branch information
1 parent
2248263
commit 32e75c6
Showing
14 changed files
with
3,831 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,8 @@ yarn-error.log* | |
|
||
# vercel | ||
.vercel | ||
|
||
# next-pwa | ||
public/workbox-*.js | ||
public/sw.js | ||
public/*.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"name": "readme.so", | ||
"display": "standalone", | ||
"description": "Use readme.so's markdown editor and ready made templates to easily create a simple README for your repositories", | ||
"start_url": "/", | ||
"scope": "/", | ||
"theme_color": "#10B981", | ||
"background_color": "#FFF", | ||
"shortcuts": [ | ||
{ | ||
"name": "Editor", | ||
"url": "/editor", | ||
"icons": [ | ||
{ | ||
"src": "/icons/icon-142x142.png", | ||
"sizes": "142x142" | ||
}, | ||
{ | ||
"src": "/icons/icon-176x176.png", | ||
"sizes": "176x176" | ||
}, | ||
{ | ||
"src": "/icons/icon-600x600.png", | ||
"sizes": "600x600" | ||
} | ||
] | ||
} | ||
], | ||
"icons": [ | ||
{ | ||
"src": "/icons/icon-32x32.png", | ||
"sizes": "32x32", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/icons/icon-48x48.png", | ||
"sizes": "48x48", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/icons/icon-96x96.png", | ||
"sizes": "96x96", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/icons/icon-72x72.png", | ||
"sizes": "72x72", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/icons/icon-142x142.png", | ||
"sizes": "142x142", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/icons/icon-176x176.png", | ||
"sizes": "176x176", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/icons/icon-600x600.png", | ||
"sizes": "600x600", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/maskable_icon.png", | ||
"sizes": "176x176", | ||
"type": "image/png", | ||
"purpose": "maskable" | ||
} | ||
] | ||
} |