13 lines
373 B
JavaScript
13 lines
373 B
JavaScript
let runtimeConfig;
|
|
/**
|
|
* @deprecated Runtime config is deprecated and will be removed in Next.js 16.
|
|
*/ export default (()=>{
|
|
return runtimeConfig;
|
|
});
|
|
/**
|
|
* @deprecated Runtime config is deprecated and will be removed in Next.js 16.
|
|
*/ export function setConfig(configValue) {
|
|
runtimeConfig = configValue;
|
|
}
|
|
|
|
//# sourceMappingURL=runtime-config.external.js.map
|