docs: added customer storefront guides (#7685)

* added customer guides

* fixes to sidebar

* remove old customer registration guide

* fix build error

* generate files

* run linter
This commit is contained in:
Shahed Nasser
2024-06-13 12:21:54 +03:00
committed by GitHub
parent d862d03de0
commit c1db40b564
80 changed files with 2301 additions and 701 deletions
@@ -57,9 +57,9 @@ const modules = {
callbackURL: process.env.GOOGLE_CALLBACK_URL,
successRedirectUrl:
process.env.GOOGLE_SUCCESS_REDIRECT_URL,
}
}
}
},
},
},
},
],
},
@@ -36,8 +36,8 @@ const modules = {
config: {
emailpass: {
// options...
}
}
},
},
},
],
},
@@ -92,4 +92,4 @@ const modules = {
## Related Guides
- [How to register a customer using email and password](../../../customer/register-customer-email/page.mdx)
- [How to register a customer using email and password](../../../../storefront-development/customers/register/page.mdx)
@@ -32,12 +32,12 @@ module.exports = defineConfig({
http: {
authMethodsPerActor: {
user: ["google"],
customer: ["emailpass"]
customer: ["emailpass"],
},
// ...
},
// ...
}
},
})
```