react-code-dataset / next.js /packages /next /src /shared /lib /image-config-context.shared-runtime.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import React from 'react'
import type { ImageConfigComplete } from './image-config'
import { imageConfigDefault } from './image-config'
export const ImageConfigContext =
React.createContext<ImageConfigComplete>(imageConfigDefault)
if (process.env.NODE_ENV !== 'production') {
ImageConfigContext.displayName = 'ImageConfigContext'
}