From 4b06e1c0b561c4c062e2ebd4d09656e349c0fa0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Meichelb=C3=B6ck?= Date: Wed, 22 Apr 2026 12:10:45 +0000 Subject: [PATCH] chore: rename middleware.ts to proxy.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Next.js 16 deprecated the `middleware` file convention in favor of `proxy`. Rename `src/middleware.ts` to `src/proxy.ts` to silence the build warning. No content change needed — the file uses `export default` and `export const config`, both of which work identically under the proxy convention. See: https://nextjs.org/docs/messages/middleware-to-proxy --- src/{middleware.ts => proxy.ts} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/{middleware.ts => proxy.ts} (100%) diff --git a/src/middleware.ts b/src/proxy.ts similarity index 100% rename from src/middleware.ts rename to src/proxy.ts