rgaidot/koa-react-boilerplate

View on GitHub
api/src/middlewares/jwt.js

Summary

Maintainability
A
0 mins
Test Coverage
import config from 'config';
import jwt from 'koa-jwt';

export default jwt({
    secret: config.jwt.secret,
    passthrough: config.jwt.passthrough,
});