Hey, if I load my modules via config file, do I have to install same plugins in each one? I understand that if I have one module, which calls other modules, it shares Application instance, so I wonder if it's the same case
b
Bruce Hamilton
08/21/2024, 6:28 PM
Nope, it's all the same Application instance, so it's the same as calling all the extension functions from the one module
Bruce Hamilton
08/21/2024, 6:29 PM
The advantage with multiple modules referenced from the config file is that you can modify which modules you want to load from the config file in the environment
k
krzysztof
08/21/2024, 6:30 PM
Thanks, that make sense. Are modules from config file loaded in order?