最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - PWA on Github pages - Stack Overflow

programmeradmin1浏览0评论

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:

  1. 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)
  2. 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);
  3. TypeError: Failed to register a ServiceWorker: A bad HTTP response code (404) was received when fetching the script.
  4. and after clicking "Add to homescreen" in devtools, i got: Manifest: Line: 1, column: 1, Unexpected token. and Site 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:

  1. 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)
  2. 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);
  3. TypeError: Failed to register a ServiceWorker: A bad HTTP response code (404) was received when fetching the script.
  4. and after clicking "Add to homescreen" in devtools, i got: Manifest: Line: 1, column: 1, Unexpected token. and Site 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 badges
Add a ment  | 

2 Answers 2

Reset to default 5

The 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.

发布评论

评论列表(0)

  1. 暂无评论