From 7fb6734274d59fdef0a68367d5fd89ad37694d63 Mon Sep 17 00:00:00 2001 From: Christos Emmanouilidis Date: Wed, 30 Mar 2022 23:50:23 +0300 Subject: [PATCH] first commit - env setup --- packages/shopify/src/commerce.config.json | 2 +- site/commerce.config.json | 4 ++-- site/tsconfig.json | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/shopify/src/commerce.config.json b/packages/shopify/src/commerce.config.json index b194b629c..69b5d449b 100644 --- a/packages/shopify/src/commerce.config.json +++ b/packages/shopify/src/commerce.config.json @@ -1,7 +1,7 @@ { "provider": "shopify", "features": { - "wishlist": false, + "wishlist": true, "customerAuth": true } } diff --git a/site/commerce.config.json b/site/commerce.config.json index ad72b58de..c21540409 100644 --- a/site/commerce.config.json +++ b/site/commerce.config.json @@ -2,8 +2,8 @@ "features": { "cart": true, "search": true, - "wishlist": false, - "customerAuth": false, + "wishlist": true, + "customerAuth": true, "customCheckout": false } } diff --git a/site/tsconfig.json b/site/tsconfig.json index 7c91afd6f..2de809a44 100644 --- a/site/tsconfig.json +++ b/site/tsconfig.json @@ -23,8 +23,8 @@ "@components/*": ["components/*"], "@commerce": ["../packages/commerce/src"], "@commerce/*": ["../packages/commerce/src/*"], - "@framework": ["../packages/local/src"], - "@framework/*": ["../packages/local/src/*"] + "@framework": ["../packages/shopify/src"], + "@framework/*": ["../packages/shopify/src/*"] } }, "include": ["next-env.d.ts", "**/*.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],