Next.js Discord

Discord Forum

400 Bad Request Public Folder Images

Unanswered
West African Lion posted this in #help-forum
Open in Discord
Avatar
West African LionOP
all of a sudden i started getting bad requests from images in my public folder.

folder structure
public/
  login-sidebar.jpg
src/
  app/
    page.tsx


code
<Image
  alt="background"
  fill
  priority
  quality={90}
  sizes="(max-width: 768px) 50vw, 100vw"
  src="/login-sidebar.jpg"
  style={{
    objectFit: 'cover',
  }}
/>


error
400 Bad Request
http://localhost:3000/_next/image?url=%2Flogin-sidebar.jpg&w=3840&q=90

3 Replies

Avatar
Ray
do you have a middleware?
Avatar
West African LionOP
now that you mention it i made a recent change to that and i understand why its throwing that error!
thank you so much!