next.js 无法解构“(0,1.default)(...)”的属性“publicRuntimeConfig”,因为它未定义

7vux5j2d  于 2023-11-18  发布在  其他
关注(0)|答案(1)|浏览(128)
import getConfig from 'next/config';
  
const { publicRuntimeConfig } = getConfig();

字符串
在从Next 10.0.7更新到10.0.8或任何其他以上版本后,getConfig总是返回undefined。但所有内容都适用于10.0.8以下的任何其他版本

llmtgqce

llmtgqce1#

在Jest中,您可以使用以下代码简单地模拟它。

jest.mock("next/config", () => () => ({
  publicRuntimeConfig: {
    contextPath: "",
  },
}));

字符串

相关问题