Installation
- Open a terminal inside of your NUXT 3 project. Download the
nuxt-saasmvp-oauthmodule from npm using the following command:
sh
npm i @saasmvp/nuxt-saasmvp-oauth- Add the
nuxt-saasmvp-oauthmodule to yournuxt.config.tsfile:
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-oauthmodule loads without an error using the following command:
sh
npm run dev