Installation
- Open a terminal inside of your NUXT 3 project. Download the
nuxt-saasmvp-oauth
module from npm using the following command:
sh
npm i @saasmvp/nuxt-saasmvp-oauth
- Add the
nuxt-saasmvp-oauth
module to yournuxt.config.ts
file:
ts
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
modules:[
'@saasmvp/nuxt-saasmvp-oauth'
]
})
- Using your open terminal, run the project to make sure the
nuxt-saasmvp-oauth
module loads without an error using the following command:
sh
npm run dev