我正在部署一个使用next.js进行openshift的 Node 项目,在该项目中设置了环境变量MY_ENV。我已经将publicRuntimeConfig配置添加到next.config.js来访问它的客户端。它在我的本地环境中有效,但是当它的容器化部署publicRuntimeConfigundefined时。

这是我来自next.config.js的配置

module.exports = {
  publicRuntimeConfig: { // Will be available on both server and client
      isProd: process.env.MY_ENV ? process.env.MY_ENV.includes('prod'): false,
      isStaging: process.env.MY_ENV ? process.env.MY_ENV.includes('staging') : false
    },
  webpack: (config, { dev }) => {
    const eslintRule = {
      test: /\.js$/,
      enforce: 'pre',
      exclude: /node_modules/,
      loader: 'eslint-loader',
      options: {
        emitWarning: dev,
      },
    };
    const cssRule = {
      test: /\.css$/,
      use: {
        loader: 'css-loader',
        options: {
          sourceMap: false,
          minimize: true,
        },
      },
    };

    config.node = {
      fs: 'empty'
    };

    config.module.rules.push(eslintRule);
    config.module.rules.push(cssRule);
    return config;
  }
};

这就是我试图在页面上获取publicRuntimeConfig的方式。
import getConfig from 'next/config';
const { publicRuntimeConfig } = getConfig();

console.log(publicRuntimeConfig.isProd); //publicRuntimeConfig is undefined here.


任何帮助表示赞赏。


publicRuntimeConfig在更高的环境中未定义,因为它不是要部署的软件包的一部分。

最佳答案

undefined Error是否出现在页面中?

尝试从getConfig转换为next/config怎么样?

import getConfig from 'next/config';

const getNodeEnv = () => {
  const { publicRuntimeConfig } = getConfig();

  const isProd = publicRuntimeConfig.isProd || false;
  const isStaging = publicRuntimeConfig. isStaging || false;

  return { isProd, isStaging }
};

const env = getNodeEnv()

console.log(env)

关于javascript - prod/staging中始终未定义next.config.js中的publicRuntimeConfig,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55113156/

10-09 20:54