blob: 0b78f767bdef391a03178141a9a8c1acdb5ddab1 (
plain)
1
2
3
4
5
6
|
import Medusa from "@medusajs/medusa-js"
const BACKEND_URL = process.env.NEXT_PUBLIC_MEDUSA_BACKEND_URL || "http://localhost:9000"
export const medusaClient = new Medusa({ baseUrl: BACKEND_URL, maxRetries: 3 })
|