Configure UI component code generation caching
When bundling the front-end of your application, the UI bundler process reads your UI Component instance definition files from {package}/ui/c3/meta/**/{componentId}.json, processes it, and generates a TSX file. The resulting file is cached on the server-side.
This allows UI bundler to leverage the cache and skip the generation step for files that were previously bundled and remain unchanged. Files that were changed since the last code generation will be detected, re-generated, and cached again.
This cache ensures the overall UI bundler process runs faster. You can disable caching if you are experiencing problems with the UI bundler process where your changes are not being reflected.
To disable caching, in the application you are bundling, navigate to static console and run:
UiSdlConfig.setConfigValue('infrastructure.cacheGenFiles', false)