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?

【Vite+Supabase】Uncaught Error: supabaseUrl is required.

Posted at

はじめに

環境変数ファイルを作成時につまったので記事にします。

問題

正しいURL、キーを入力したはずなのに表題のエラーがでる
image.png

解決方法

環境変数名を.envで定義したものと違うものを指定していた。

.env
VITE_SUPABASE_URL='https://~'
VITE_SUPABASE_ANON_KEY=キー
supabase.ts
import { createClient } from '@supabase/supabase-js'

- export const supabase = createClient(import.meta.env.VITE_SUPABASE_URL!, import.meta.env.VITE_SUPABASE_KEY!)
+ export const supabase = createClient(import.meta.env.VITE_SUPABASE_URL!, import.meta.env.VITE_SUPABASE_ANON_KEY!)

+ // 環境変数が正しく設定されていることを確認
+ console.log("Environment Variables:", import.meta.env);

image.png

おわりに

:writing_hand:学んだこと
VITEプロジェクトの場合、環境変数の先頭にVITE_をつける
環境変数を読み込む際はimport.meta.env.環境変数名にする
process.env.環境変数名にしたい場合はこちら の記事を参考に設定を変える

参考

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?