Integration

Svelte Commerce on Saleor

Saleor covers the core commerce path over GraphQL. It predates the current source-verification sweep and is a next candidate for it.

Coverage

28 of 43 storefront services are wired to a real Saleor endpoint.

Env wiring and an override module ship with the repo.

terminal
$ npm uninstall @misiki/litekart-connector
$ npm i @misiki/saleor-connector
$ npm run dev

Setup

1 · Point the config at the connector

// kitcommerce.config.ts
export * as services from './src/lib/core/connectors/saleor'

2 · Set the environment

# .env
PUBLIC_SALEOR_API_URL=# GraphQL endpoint, e.g. https://your-store.saleor.cloud/graphql/

What to know

  • Env wiring ships in the repo.
  • Uses an override module so store and page metadata resolve statically instead of hitting Litekart REST.
  • Wired services: auth, cart, checkout, order, category, coupon, search, address, user, page, payment-method.

Full guide with troubleshooting, store identity and per-service behaviour: docs/SALEOR.md

Run your Saleor store on Svelte Commerce.