I configured static resource caching on express
app.use(express.static(path.join(__dirname, 'public'),{maxAge:604800000}));
Found that js or css and other images can be cached normally.
But there is one picture that has been loaded multiple times.
Is it a cache configuration problem?
Are the screenshots all the same picture? They are all loaded from memory, indicating that the cache is successful. If it is retrieved multiple times, it should be because the script file has requested the image multiple times.