Why are the CSS fonts not working in Internet Explorer after disabling cache in Node JS?
After a user navigates to a page and then clicks the back button to return to the previous page, the font styles are not rendered properly in IE 11.
The code 'koa-no-cache' is used to disable caching:
app.use(noCache({global: true}));
This code was implemented to prevent caching for my node application. Are there any solutions to fix this issue?