is possible I start my angular module without some dependency?
it's my angular.module
angular.module("app", [
'ngSanitize', 'ngAnimate', 'ui.router', 'ngMaterial',
'ngRoute', 'ngCookies', 'NgSwitchery',
'ngCkeditor', 'angularFileUpload',
]);
I would like not use, they're required on 1st. loading. 'NgSwitchery', 'ngCkeditor', 'angularFileUpload'
Thank you.
yes, you could use condition to pass dependency.
You might need requireJS if you're trying to load them at different times.