I am using the next-intl Internationalization library for my multi-language project. And I configure the middleware.js in the root like this below:
import createMiddleware from 'next-intl/middleware';import { localePrefix, locales } from '../navigation';
export default createMiddleware({ locales, localePrefix, defaultLocale: 'en'});
export const config = { matcher: [ '/((?!api|_next/static|_next/image|favicon.ico|ads.txt|robots.txt|download|images|logo).*)', ]};And now there is an Edge Middleware request for every single page request, which cause high volume of the Edge Middleware Invocation


Is this normal or any issue in the middleware configuration? I just want to confirm if the internationalization will cost the Edge Middleware Invocation or not.
Thanks a lot!