import getConfig from 'next/config'; const { publicRuntimeConfig } = getConfig();
字符串在从Next 10.0.7更新到10.0.8或任何其他以上版本后,getConfig总是返回undefined。但所有内容都适用于10.0.8以下的任何其他版本
llmtgqce1#
在Jest中,您可以使用以下代码简单地模拟它。
jest.mock("next/config", () => () => ({ publicRuntimeConfig: { contextPath: "", }, }));
字符串
1条答案
按热度按时间llmtgqce1#
在Jest中,您可以使用以下代码简单地模拟它。
字符串