如何使用Nuxt.JS app访问Heroku环境变量

问题描述 投票:0回答:1

我已经在Heroku上部署了我的应用程序,在我的应用程序启动时,我检查了一个配置文件,在那里我想访问我在Heroku API_KEY上创建的配置var来定义我的Firebase配置:

module.exports = {
  fireConfig: {
    apiKey: process.env.API_KEY,
    authDomain: "my-app.firebaseapp.com",
    databaseURL: "https://my-app.firebaseio.com",
    projectId: "my-project-id",
    storageBucket: "my-app.appspot.com",
    messagingSenderId: "my-messaging-sender-id"
    }
};

这个process.env.API_KEYundefined。我应该使用不同的方式来访问它吗?

heroku configuration environment-variables nuxt.js nuxt
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.