The Problem
I'm using Next.js, Prisma, and NextAuth's Email Provider strategy to setup an authentication system. I want to use Next.js middleware to redirect a request if it doesn't contain a valid session. But any use of the middleware, like literally just having a function declared in the middleware.js file, throws this error:
error - (middleware)/node_modules/oidc-token-hash/lib/shake256.js (3:0) @ <unknown>
error - Cannot read properties of undefined (reading 'substr')
null
It logs this error about 5 times. This is the middleware.js
file at {root}/middleware.js
import { NextResponse } from 'next/server';
export default function middleware(request) {
return NextResponse.next();
}
And here is this the node_modules/oidc-token-hash/lib/shake256.js
file specified in the error:
const crypto = require('crypto');
const [major, minor] = process.version.substr(1).split('.').map((x) => parseInt(x, 10));
const xofOutputLength = major > 12 || (major === 12 && minor >= 8);
const shake256 = xofOutputLength && crypto.getHashes().includes('shake256');
module.exports = shake256;
Prior to creating this file, the app worked perfectly. I could authentiate via an email link, make simple GET requests to API routes, and do any other functionality. I've never seen this error before. The closest I can guess is that I have some sort of dependency/versioning issue, but I'm using damn near latest versions of Next, React, Prisma, NextAuth, Node, etc.
Perhaps it's worth noting that I'm using React Query? Other than that I have no idea what might be causing this.
Package.json:
{
"name": "nextjs-starter-auth-sql",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.3.0",
"bcrypt": "^5.0.1",
"next": "12.2.5",
"next-auth": "^4.10.3",
"nodemailer": "^6.7.8",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.2"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.16",
"prisma": "^4.3.0",
"tailwindcss": "^3.1.8"
}
}
Happy to answer any questions you may have. Your help is truly appreciated.