2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Vue3でdotenvを使う方法.envの環境変数名に `VITE_` という接頭辞をつけ`import.meta.env.{環境変数名}` という指定の方法にする (processでエラーが出る人向け)

Last updated at Posted at 2024-02-28

現象

  • Vue3で npm install dotenv して使おうとしたが使えなかった
  • process.env.HOGE という書き方ではprocessでエラーになる
    • 予測変換で設定できるので余計混乱する

解決方法

要点は2つ

  • .envファイルに設定する環境変数には VITE_ という接頭辞をつける 例) VITE_HOGE
  • import.meta.env.{環境変数名} という指定の方法にする 例)import.meta.env.VITE_HOGE

参考サイト
VITE公式 環境変数とモード

エラー全文

process.env.HOGE という書き方ではprocessでエラーになる

Vue: Cannot find name  process . Do you need to install type definitions for node? Try  npm i --save-dev @types/node  and then add  node  to the types field in your tsconfig.

何が起こっていたのか

  • Vue.jsはVue3からビルドにVITEを使っている
  • 環境変数の設定はVITEに委ねられている

上記2つの点を理解していないと解決にたどり着けない
エラーメッセージで検索してもたどり着けなかった

参考サイト(再掲)
VITE公式 環境変数とモード

混乱の原因

混乱の原因としては大きく2つ原因があると考えている

  • Vue3のサイトで環境変数と検索してもヒットしない
  • 検索結果に古い設定が書かれた Vue CLI のページがHitする
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?