feat: Proper craft cellars support

This commit is contained in:
Brennan Wilkes (Text Groove) 2026-01-29 19:08:37 -08:00
parent f9ed9b735c
commit 2ca5e602a3

View file

@ -300,6 +300,30 @@ function createStore(defaultUa) {
startUrl: "https://craftcellars.ca/collections/rum?filter.v.availability=1",
discoveryStartPage: 5,
},
{
key: "single-malt-scotch",
label: "Single Malt Scotch",
startUrl: "https://craftcellars.ca/collections/single-malt-scotch?filter.v.availability=1",
discoveryStartPage: 1,
},
{
key: "other-scotch-styles",
label: "Other Scotch Styles",
startUrl: "https://craftcellars.ca/collections/other-scotch-styles?filter.v.availability=1",
discoveryStartPage: 1,
},
{
key: "single-grain-scotch",
label: "Single Grain Scotch",
startUrl: "https://craftcellars.ca/collections/single-grain-scotch?filter.v.availability=1",
discoveryStartPage: 1,
},
{
key: "blended-malt-scotch",
label: "Blended Malt Scotch",
startUrl: "https://craftcellars.ca/collections/blended-malt-scotch?filter.v.availability=1",
discoveryStartPage: 10,
},
],
};
}