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

More than 3 years have passed since last update.

Nuxtで作ったアプリをHerokuで公開するときに環境変数を参照できるようにする

Posted at

はじめに

Nuxtで作ったアプリをHerokuで公開するときに環境変数をどうやってHerokuに設定すればいいのか分かりませんでした。
調べてできるようになったので、忘備録として残しておきます。

前提

@nuxtjs/dotenv を使用している
.envファイルに環境変数を記述している
​Heroku CLI​ を使用している

nuxt.config.js にenvを追加

nuxt.config.jsの最後に追記します。

env: {
  FIREBASE_API_KEY:process.env.API_KEY
}

herokuで環境変数を設定

heroku config:set ENV_VAR_NAME="value"
1
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
1
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?