1
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?

"SUPABASE": Unknown word.の注意文が出てくる

1
Last updated at Posted at 2026-04-19

はじめに

supabaseを使用するための設定をしていたら注意文が出てので備忘録として残します。

問題

src/supabaseClient.jsファイルの設定をしたときに、以下の注意文が出てきました。

"supabase": Unknown word.

スクリーンショット 2026-04-20 1.50.46.png

解決方法

VSCodeの拡張機能のスペルチェッカー(Code Spell Checker)が「supabase」の単語を認識していないことが原因でした。プロジェクトにcspell.jsonファイルを作成して、これらの単語を許可リストに追加したところ注意文は消えました。
(.envや.gitignoreなどのある1番上の階層に作成)

cspell.json

{
  "words": ["supabase"]
}

おわりに

VSCodeの拡張機能が原因とは予想していなかったですが、無事に原因と対処法まで分かったので良かったです!

参考

1
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
1
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?