This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const authentication = require('@feathersjs/authentication'); | |
| const jwt = require('@feathersjs/authentication-jwt'); | |
| const local = require('@feathersjs/authentication-local'); | |
| const oauth2 = require('@feathersjs/authentication-oauth2'); | |
| const session = require('express-session'); | |
| const Auth0Strategy = require('passport-auth0'); | |
| module.exports = function (app) { | |
| const config = app.get('authentication'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { SchemeOptions } from '@nuxtjs/auth-next/dist'; | |
| import BaseScheme from '@nuxtjs/auth-next/dist/schemes/_scheme'; | |
| import * as firebase from 'firebase/app'; | |
| import 'firebase/auth'; | |
| import jwt from 'jsonwebtoken'; | |
| import memoizer from 'lru-memoizer'; | |
| import fetch from 'node-fetch'; | |
| const DEFAULTS: SchemeOptions = { | |
| name: 'firebase', |
OlderNewer