If I upload an image via form and then want to grab it via next.js api and display via Image component I have 400 Bad Request response. Image component says "Could not load the image". Tried to specify domain in config and use Loader, the same result. More than that, I can't access new uploaded images directly via browser url bar. But if I rebuild the project those previously uploaded images finally displays and there is no 400 error. I upload images in /public/uploads directory. This problem happens only in production mode (npm run build, npm run start). There is no such problem when I work with it in dev mode locally (npm run dev). How to make freshly uploaded images correctly displays without rebuilding a project?
next.js 400 bad request after trying to access just uploaded image
901 Views Asked by holycreeper At
1
There are 1 best solutions below
Related Questions in REACTJS
- ussd reader in Recket Native module
- Teams tab application returns SSO error in mobile Outlook
- Github Pages Deployment deploys a blank page
- Is there any way to glow this bulb image like a real light bulb
- Optimize LCP ReactJs
- Page in React only renders elements after refreshing
- Unable to Post Form Data to MongoDB because of picturepath
- MERN Stack App - User Avatar Upload - 500 Error After Deployment on Render
- Hooks are not supported inside an async component error in nextjs project using useQuery
- How to change the Font Weight of a SelectValue component in React when a SelectItem is selected?
- On the server side, it returns undefined but on the client side, logs the values no problem
- Multilevel dropdown with checkboxes in Select component
- TypeScript Error only on big type only when assigned to a variable
- Deployment through app engine, cloud sql database, problem connecting with server code, doesn't connect
- Data is not filtering in props. Showing passdata.map is not a function
Related Questions in IMAGE
- Golang lambda upload image into s3 static website
- Put an image behind the title in a WP, WooCommerce "shop" page
- How to create an JSOUP element from byte array image (Load from Database)
- Cloudflare not respecting Cache-Control
- Sending multiple images and data in a single angular observable
- Create and combine several images into a single image for my react native App
- Should I compress images in java backend before sending to frontend?
- Javascript Place Image Where User Clicks
- Whitespace in document has a bottom border remnant or some other line at the bottom of the whitespace
- Sony Spresense Camera Board
- After completely installation and done all the work i am getting Permission denied error do any one have solution
- HTML page on NAS server image not showing on mobile phone
- mouse coordinates in image go below 0 and above width
- Why are the css images or js not loading in my laravel project?
- Python pillow library text align center
Related Questions in NEXT.JS
- Error **net::ERR_CONNECTION_RESET** error while uploading files to AWS S3 using multipart upload and Pre-Signed URL
- Check list of pages with axios
- Calling functions from Main Component while using tanstack table
- NextJS 14 site working in development but not in vercel
- Route Handler not working Next auth, Next Intl & Next 14
- NextJS Docker build fails: fetch failed ECONNREFUSED
- Need some advice on differentiating between subscriptions using Stripe
- Update Sidebar Height to Cover the Document Height (with React Pro Sidebar)
- How do I send an audio file to OpenAi?
- Next.js not updating state during OnClick after router.push to same page with different ID
- Next js delay before applying Emotion and MUI styles
- Next.js. Server actions in form using formik. Action with arguments didnt work
- Protect Server Actions with Next Auth in Next JS 14
- Next-Auth credentials login troubles debugging
- Hydration failed because the initial UI does not match what was rendered on the server: Next js Tanstack table
Related Questions in UPLOAD
- Curl URL syntax for uploading files
- How to upload files to MediaWiki APIs in Rust?
- Trouble uploading with playwright
- Kendo Ui Angular File Upload
- Get 5 images with preview and delete using jquery
- how to analyse a project in sonarcloud
- Gzip compression for HTML form upload?
- Poco HTTP upload file, HTTP header written in file
- Upload .tex File to Overleaf
- Upload multiple pdf issue on jenkins with java selenium
- How can I upload a tar.bz2 file to Openstack Swift Object storage container using Python Swift Client?
- Fb2 UploadedFile mimetype on different OSes not the same
- Asset validation error on App Store upload
- Why uploading a file is so slow?
- dronekit can not download mission with serial or usb connections
Related Questions in 400-BAD-REQUEST
- I'm did POST method for DELETE with correct parameters and URL in React application but receive 400 Bad request error. Can it be server side issue?
- ASP.NET Core 7 : edit requests to controller with large request returns 400 error
- How do I fix this review form component bad request error
- WordPress admin-post.php Error 400 (Bad Request)
- How to resolve 400 bad request error while trying to send message through the new FCM API V1?
- Problems with fetch requests in svelteKit `/typo` 400 (Bad Request), Uncaught (in promise) SyntaxError: Unexpected end of JSON input
- i am having 400 POST bad request error and having this error in status "json value could not be converted to syatem.string. path"
- Curl to VB.Net Visual basic
- 341 character querystring fails to load with Error 400 - Bad Request
- Python Discord_Bot, Chatgpt_api: API request: 400 Client Error: Bad Request
- connecting to the backend in react it gives error 400 bad request in mern application
- Using mixpanel(in angular) with nginx [error]: Bad content type. Please use multipart
- Angular 17 httpClient 400 Bad request POST issue
- IIS reports "HTTP Error 400. A request header field is too long"
- Next js Dynamic Routes image gives 400 error
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Summary
Write a custom api endpoint to serve uploaded content, because Next.JS does not support this natively
I ran into this problem as well. I was uploading temporary images to
public/_i. During development withnext run deveverything appeared great, but once I built and ran in prod mode I started seeing:I looked into loaders and setting custom headers for that path. None of it worked.
Turns out, **Next.JS encourages uploading dynamic content to a separate service or cdn. ** They do not encourage dynamically serving image content like this, and it may be considered an anti-pattern. Under the image optimization page they make the case:
This is demonstrated by the fact that your content appeared after you rebuilt. That is because the build system has cached your uploaded image as if it were static content.
Despite all of this, if you (like me) want to proceed, this is what I did:
<Image />with a regular<img />And that should be all you need.