0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Hexoで作ったブログにPWAプラグイン入た時のメモ

Last updated at Posted at 2019-01-18

個人的なブログを「ホームに追加」してみたくなり、
PWA対応を入れたのでそのメモです。

※PWA初心者です

構成

install

README通りだけど
npm install --save hexo-pwa

後は、_config.ymlに設定を追加・編集

詰まったこと

iOSでアイコンが変わらない。。。

iOSはmanifest.jsonに書いても読み込んでくれないようです。
headに別途タグを追加する必要があるようです(メンドクセェ

GoogleがPWACompatというものを出していた!!!
PWACompatは、headへのタグ追加をやってくれるみたいです!(感謝

ココでいいのか不安ですが、追加しました。

/themes/phantom/layout/_partial/head.ejs
<!-- PWACompat -->
<link rel="manifest" href="manifest.webmanifest" />
<script async src="https://cdn.jsdelivr.net/npm/pwacompat@2.0.7/pwacompat.min.js"
  integrity="sha384-ptgwb3/v69WGur7IwSnWOowVxE7hcRB3DG/EiHdejrw2sFNwUHynFbiRMPxc4hdS"
  crossorigin="anonymous"></script>

結果。。。。できた!!!(ノ≧∀)ノわぁ~い♪

メモ終わり。

PWA関係無かった?!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?