Supported countries for location-based features such as currency and shipping filters.
Derived from the locations defined in config.json, excluding the "OTHER" fallback entry.
Sorted alphabetically by country name.
Source
exportconstCOUNTRIES= Object.entries(locations) .filter(([code]) => code !=="OTHER") .map(([code, { name }]) => ({ name, code })) .sort((a, b) => a.name.localeCompare(b.name));
Supported countries for location-based features such as currency and shipping filters. Derived from the locations defined in config.json, excluding the "OTHER" fallback entry. Sorted alphabetically by country name.