@sanity/vision
Version:
Sanity plugin for running/debugging GROQ-queries against Sanity datasets
20 lines (17 loc) • 442 B
text/typescript
import {defineLocaleResourceBundle} from 'sanity'
/**
* The locale namespace for the vision tool
*
* @internal
*/
export const visionLocaleNamespace = 'vision' as const
/**
* The default locale bundle for the vision tool, which is US English.
*
* @internal
*/
export const visionUsEnglishLocaleBundle = defineLocaleResourceBundle({
locale: 'en-US',
namespace: visionLocaleNamespace,
resources: () => import('./resources'),
})