UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

10 lines (9 loc) 297 B
import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; export const getRuntimeConfig = (config) => { const browserDefaults = getBrowserRuntimeConfig(config); return { ...browserDefaults, ...config, runtime: "react-native", }; };