From 502a0759a5b8dc4efd75fa73199270e2ff243d0d Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Wed, 25 Jan 2023 13:30:43 +0100 Subject: [PATCH] Docs: fix typo in front-end api url Seems my autocorrect was a bit overzealous. --- website/docs/tutorials/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/tutorials/quickstart.md b/website/docs/tutorials/quickstart.md index 1b4e268ceb..d60d606f06 100644 --- a/website/docs/tutorials/quickstart.md +++ b/website/docs/tutorials/quickstart.md @@ -318,7 +318,7 @@ unleash.on('synchronized', () => { The easiest way to connect a client-side SDK to your Unleash instance is to use the [front-end API](../reference/front-end-api.md). You'll need to: 1. Create a front-end API token ([How do I create API tokens?](../how-to/how-to-create-api-tokens.mdx)) 2. Configure CORS to allow your SDK to connect. For testing, we recommend allowing all origins (`*`). -3. Point your app at `/api/front-end`. +3. Point your app at `/api/frontend`. The section on [using the Unleash front-end API](../reference/front-end-api.md#using-the-unleash-front-end-api) has more details for how you configure these settings.