rsnext/packages/next-server/lib/runtime-config.ts
Tim Neutkens c9d599b698
Add .d.ts for next-server (#7133)
* Add .d.ts files

* Drop next declarations from index.d.ts

* Bring back number of errors

* Fix more errors

* Fix rewriteUrlForExport
2019-04-24 16:47:50 +02:00

9 lines
151 B
TypeScript

let runtimeConfig: any
export default () => {
return runtimeConfig
}
export function setConfig(configValue: any) {
runtimeConfig = configValue
}