UNPKG

@sanity/cli

Version:

Sanity CLI tool for managing Sanity installations, managing plugins, schemas and datasets

19 lines (15 loc) 883 B
// Currency code (ISO 4217) to use when displaying prices in the studio // https://en.wikipedia.org/wiki/ISO_4217 export const DEFAULT_CURRENCY_CODE = 'USD' // Document types which: // - cannot be created in the 'new document' menu // - cannot be duplicated, unpublished or deleted // - are from the Sanity Connect Shopify app - and can be linked to on Shopify export const SHOPIFY_DOCUMENT_TYPES = ['product', 'productVariant', 'collection'] // API version to use when using the Sanity client within the studio // https://www.sanity.io/help/studio-client-specify-api-version export const SANITY_API_VERSION = '2023-02-07' // Your Shopify store ID. // This is your unique store URL (e.g. 'my-store-name.myshopify.com'). // Set this to enable helper links in document status banners and shortcut links on products and collections. export const SHOPIFY_STORE_ID = '*.myshopify.com'