6
4

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.

Nuxt.jsでBasic認証が設定されているサイトでもPWAの検証をする

6
Last updated at Posted at 2019-11-19

Basic認証でのPWAの問題

manifest.jsonが401なります。
console.log見ると出てきます。

対策

manifest.jsonをBasic認証から除外する。
がもっと簡単な方法がNuxt PWA公式ドキュメントにもっと簡単な方法が。

nuxt.config.js
{
  manifest: {
    crossorigin: 'use-credentials'
  }
}

Nuxt PWA公式ドキュメントに明記してあります。

6
4
2

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
6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?