My setup includes an Express server with a designated folder for images.
app.use(express.static("files"));
When attempting to access an image from the "files" folder at localhost:3000/test, everything functions properly. However, when trying to access an image at localhost:3000/profile/404 from the same folder, it does not load.