mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-13 17:05:47 +01:00
Middleware didn't work in v12.2.3. Hopefully the password protection will work again now.
17 lines
518 B
TypeScript
17 lines
518 B
TypeScript
import { NextFetchEvent, NextRequest, NextResponse } from 'next/server';
|
|
|
|
// eslint-disable-next-line consistent-return
|
|
export function middleware(req: NextRequest, ev: NextFetchEvent) {
|
|
const isCorrectPassword = req.cookies.password === process.env.PASSWORD;
|
|
const url = req.nextUrl.clone();
|
|
if (
|
|
!isCorrectPassword &&
|
|
url.pathname !== '/login' &&
|
|
process.env.PASSWORD &&
|
|
url.pathname !== '/api/configs/tryPassword'
|
|
) {
|
|
url.pathname = '/login';
|
|
return NextResponse.rewrite(url);
|
|
}
|
|
}
|