From 96a94c27e7afc334b5ba68135c237da038a354de Mon Sep 17 00:00:00 2001 From: Blake Wilson Date: Thu, 14 Oct 2021 12:43:48 -0500 Subject: [PATCH] Update API Router auth import docs --- docs/next/guides/authentication.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/next/guides/authentication.mdx b/docs/next/guides/authentication.mdx index 5a259b777..84186d846 100644 --- a/docs/next/guides/authentication.mdx +++ b/docs/next/guides/authentication.mdx @@ -22,7 +22,7 @@ Before you get started with implementing an authentication strategy, you'll need ```ts title=src/pages/api/faust/[[...route]].ts import 'faust.config'; -import { apiRouter } from '@faustjs/core'; +import { apiRouter } from '@faustjs/core/api'; export default apiRouter; ```