8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
import 'server-only'
|
|
|
|
if (typeof window !== 'undefined') {
|
|
throw new Error('runtime-loader.ts is server-only and cannot be imported in the browser.')
|
|
}
|
|
|
|
export * from '../server/runtime-loader'
|