From 51450631cdc61a03850c19b40e1261c77a55fe1c Mon Sep 17 00:00:00 2001 From: David Nahodyl Date: Mon, 20 May 2024 20:16:04 -0400 Subject: [PATCH] clarified warning --- docs/2.guide/4.recipes/4.sessions-and-authentication.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/2.guide/4.recipes/4.sessions-and-authentication.md b/docs/2.guide/4.recipes/4.sessions-and-authentication.md index 8b5e42a942..e112fdd3e2 100644 --- a/docs/2.guide/4.recipes/4.sessions-and-authentication.md +++ b/docs/2.guide/4.recipes/4.sessions-and-authentication.md @@ -298,7 +298,9 @@ Now that we have the front-end middleware to protect front-end routes, we can us We'll use [`definePageMeta`](https://nuxt.com/docs/api/utils/define-page-meta) to apply the middleware to the route that we want to protect. -> :warning: Remember that your data aren't really secure without back-end protection! Always secure your data on the back-end first before worrying about the front-end. +::important +:warning: Remember that your data aren't really secure without back-end protection! Always secure your data on the back-end first before worrying about the front-end. +:: ```vue [pages/users/index.vue]