I have a config file which stores common settings related to app like app_name, version, records_per_page etc.
I want to use this setting in all components. One way is that I export it in components but if there are 20 components then I will have to import that in all components.
Is there any way to avoid this, so I just include config file once somewhere and I can access it in any component.