mirror of
https://github.com/bitinflow/nuxt-oauth.git
synced 2026-03-13 13:45:59 +00:00
14 lines
221 B
TypeScript
14 lines
221 B
TypeScript
export default defineNuxtConfig({
|
|
modules: ['../src/module'],
|
|
|
|
ssr: false,
|
|
|
|
oauth: {
|
|
redirect: {
|
|
home: '/home'
|
|
},
|
|
clientId: '98e1cb74-125a-4d60-b686-02c2f0c87521',
|
|
scope: ['user:read']
|
|
},
|
|
})
|