How to password protect a site?
I want to quickly share a project I made with a client. But I want to password protect it so that it cannot be accessed by anyone else.
The site would be up for a very short time so I don't want to mess with Authentication and stuff. I am searching for a very simple solution.
Thanks in advance.
2 Replies
With nuxt Security module you are able to add basic auth https://nuxt-security.vercel.app/documentation/middleware/basic-auth
Basic Auth
Optional Enable Basic Auth to protect your application from unwanted traffic.
Thanks a lot!