feat: add speech telemetry and bundle guard

This commit is contained in:
colinislit
2025-11-25 13:37:00 +01:00
parent b6c5d1a6d3
commit 7033329e0f
17 changed files with 2258 additions and 481 deletions

View File

@@ -43,6 +43,11 @@ const nextConfig = {
},
};
}
// Avoid serializing very large strings into webpack's filesystem cache during production builds
if (!dev) {
config.cache = { type: 'memory' };
}
return config;
},
};