I'm working on PWA on my page, and I'm following 100% this simple codelab - and everything works fine (on exmaple code used, and also on my own webpage), but only when i test it on localhost. after deploying it on github pages, i got lots of errors:
GET https://[myusername].github.io/manifest.json 404 ()
(ie. there may be something wrong with paths, as there should be project name before manifest file i guess)Manifest: Line: 1, column: 1, Unexpected token.
(in devtools i can see there's although it's normal json file and it's working fine on my localhost);TypeError: Failed to register a ServiceWorker: A bad HTTP response code (404) was received when fetching the script.
- and after clicking "Add to homescreen" in devtools, i got:
Manifest: Line: 1, column: 1, Unexpected token.
andSite cannot be installed: the manifest could not be fetched, is empty, or could not be parsed
.
Any ideas? I don't know if i'm doing something wrong or there's something wrong with github pages...
I'm working on PWA on my page, and I'm following 100% this simple codelab - https://codelabs.developers.google./codelabs/add-to-home-screen/#0 and everything works fine (on exmaple code used, and also on my own webpage), but only when i test it on localhost. after deploying it on github pages, i got lots of errors:
GET https://[myusername].github.io/manifest.json 404 ()
(ie. there may be something wrong with paths, as there should be project name before manifest file i guess)Manifest: Line: 1, column: 1, Unexpected token.
(in devtools i can see there's although it's normal json file and it's working fine on my localhost);TypeError: Failed to register a ServiceWorker: A bad HTTP response code (404) was received when fetching the script.
- and after clicking "Add to homescreen" in devtools, i got:
Manifest: Line: 1, column: 1, Unexpected token.
andSite cannot be installed: the manifest could not be fetched, is empty, or could not be parsed
.
Any ideas? I don't know if i'm doing something wrong or there's something wrong with github pages...
Share Improve this question asked Sep 14, 2017 at 21:37 MajkaMajka 3211 gold badge3 silver badges6 bronze badges2 Answers
Reset to default 5The root path of Github Pages is the user name https://{github_username}.github.io/{repository}
, which means that if your repository is to bee a PWA, then the start_url
in manifest.json
should be adjusted accordingly, and your other paths that point to the root path, such as /
should also be given the repository name /repo/
to work correctly.
for example
manifest.json
{
// ...
"id": "/repository/", // not "/"
"start_url": "/repository/", // if you set "/" that means: `https://{github_username}.github.io/` not `https://{github_username}.github.io/repository`
}
app.js
navigator.serviceWorker.register('/repository/sw.js') // not '/sw.js'
Full example
- source: https://github./CarsonSlovoka/twenty48/tree/gh-pages/docs
- demo: https://carsonslovoka.github.io/twenty48/
It looks like the service-worker.js
and manifest.json
files may have gotten corrupted somehow, because I can't open either file on my puter even with multiple downloads. (I'm looking at the /final
folder)
I'd also suggest looking at other PWA's already on Github, such as pwarocks to see how they've pulled off a PWA using Github Pages.