mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(core): Cache issue (no-changelog) (#9173)
This commit is contained in:
@@ -355,7 +355,7 @@ export class Server extends AbstractServer {
|
||||
}
|
||||
|
||||
const maxAge = Time.days.toMilliseconds;
|
||||
const cacheOptions = inE2ETests ? {} : { maxAge };
|
||||
const cacheOptions = inE2ETests || inDevelopment ? {} : { maxAge };
|
||||
const { staticCacheDir } = Container.get(InstanceSettings);
|
||||
if (frontendService) {
|
||||
const serveIcons: express.RequestHandler = async (req, res) => {
|
||||
|
||||
Reference in New Issue
Block a user