-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(pwa): add manifest.json and service worker
- Loading branch information
1 parent
9bf4b08
commit 49a8d01
Showing
13 changed files
with
1,252 additions
and
9 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 |
---|---|---|
|
@@ -10,6 +10,7 @@ module.exports = { | |
'search', | ||
'watchhistory', | ||
'favorites', | ||
'pwa', | ||
], | ||
], | ||
}, | ||
|
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 |
---|---|---|
|
@@ -69,6 +69,7 @@ The allowed scopes are: | |
- search | ||
- watchhistory | ||
- favorites | ||
- pwa | ||
|
||
### Subject | ||
|
||
|
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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,30 @@ | ||
{ | ||
"name": "JW Showcase", | ||
"display": "standalone", | ||
"start_url": "/", | ||
"short_name": "JW Showcase", | ||
"theme_color": "#DD0000", | ||
"description": "JW Showcase is an open-source, dynamically generated video website.", | ||
"orientation": "any", | ||
"background_color": "#000", | ||
"related_applications": [], | ||
"prefer_related_applications": false, | ||
"icons": [ | ||
{ | ||
"src": "images/icon-512x512.png", | ||
"sizes": "512x512" | ||
}, | ||
{ | ||
"src": "images/icon-192x192.png", | ||
"sizes": "192x192" | ||
}, | ||
{ | ||
"src": "images/icon-48x48.png", | ||
"sizes": "48x48" | ||
}, | ||
{ | ||
"src": "images/icon-24x24.png", | ||
"sizes": "24x24" | ||
} | ||
] | ||
} |
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
Oops, something went wrong.