【发布时间】:2019-08-02 10:25:03
【问题描述】:
我正在将一个使用 next.js 的节点项目部署到我设置环境变量 MY_ENV 的 openshift。我已将 publicRuntimeConfig 配置添加到 next.config.js 以访问它的客户端。它在我的本地工作,但是当它的容器化和部署时 publicRuntimeConfig 是 undefined。
这是我在 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 在更高的环境中未定义,因为它不是要部署的包的一部分。
【问题讨论】:
标签: javascript node.js reactjs openshift next.js