export function getConfig()

in supporting-blog-content/add-ai-generated-summaries/app-search-reference-ui-react-master/src/config/config-helper.js [12:28]


export function getConfig() {
  if (process.env.NODE_ENV === "test") {
    return {};
  }

  if (config.engineName) return config;

  if (
    typeof window !== "undefined" &&
    window.appConfig &&
    window.appConfig.engineName
  ) {
    return window.appConfig;
  }

  return {};
}