Next.js Discord

Discord Forum

Middleware possible blocking image from loading

Unanswered
German yellowjacket posted this in #help-forum
Open in Discord
German yellowjacketOP
I am having trouble allowing an image to load on the root page and I suspect it has something to do with the middleware blocking it from loading.
<Image
          src="/next.svg"
          alt="Next.js Logo"
          width={120}
          height={26}
          className="dark:invert"
          priority
        />


my middleware file
export const config = {
   matcher: ["/((?!api|_next/static|_next/image|favicon.ico|$|auth/.*|set-username).*)"],
}

0 Replies