From ba4ae697957fe6dfa82eb5ffe36d0973b04077fe Mon Sep 17 00:00:00 2001 From: Johnny Noble <2020@johnny.net.au> Date: Wed, 20 Nov 2024 15:42:45 +1100 Subject: [PATCH] Update authentication.mdx - remove Lucia As per Lucia's home page, they are no longer building an auth library and the existing library is being deprecated. --- src/content/docs/en/guides/authentication.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/guides/authentication.mdx b/src/content/docs/en/guides/authentication.mdx index d49365a809ae6..ead734ff7c3e0 100644 --- a/src/content/docs/en/guides/authentication.mdx +++ b/src/content/docs/en/guides/authentication.mdx @@ -11,7 +11,7 @@ import ReadMore from '~/components/ReadMore.astro' Authentication and authorization are two security processes that manage access to your website or app. Authentication verifies a visitor's identity, while authorization grants access to protected areas and resources. -Authentication allows you to customize areas of your site for logged-in individuals and provides the greatest protection for personal or private information. Authentication libraries (e.g. [Lucia Auth](https://lucia-auth.com/), [Auth.js](https://authjs.dev/), [Clerk](https://clerk.com)) provide utilities for multiple authentication methods such as email sign-in and OAuth providers. +Authentication allows you to customize areas of your site for logged-in individuals and provides the greatest protection for personal or private information. Authentication libraries (e.g. [Auth.js](https://authjs.dev/), [Clerk](https://clerk.com)) provide utilities for multiple authentication methods such as email sign-in and OAuth providers. :::tip There is no official authentication solution for Astro, but you can find [community "auth" integrations](https://astro.build/integrations/?search=auth) in the integrations directory.