Files
video-downloader/src/proxy.ts
T
anthony 74fca57f4c fix: rename middleware.ts to proxy.ts
The middleware file convention is deprecated in this Next.js version in favor of proxy.
2026-08-11 09:38:42 +02:00

11 lines
222 B
TypeScript

import createMiddleware from 'next-intl/middleware'
import { routing } from './i18n/routing'
export default createMiddleware(routing)
export const config = {
matcher: [
'/((?!api|_next|_vercel|.*\\..*).*)',
],
}