Back to Spree

Localization Example

docs/snippets/store-api/localization-example.mdx

5.4.2161 B
Original Source
typescript
// Set locale and currency per request
const products = await client.products.list({}, {
  locale: 'fr',
  currency: 'EUR',
  country: 'FR',
})