File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -104,24 +104,10 @@ window.pluginLib.MuiCore = window.pluginLib.MuiMaterial;
104
104
// @todo : Should all the plugin objects be in a single window.Headlamp object?
105
105
window . plugins = { } ;
106
106
107
- /**
108
- * Load plugins in the frontend/src/plugin/plugins/ folder.
109
- *
110
- * Plugins can be developed inside the headlamp repo.
111
- * Move them out of the repo to an external location when they are ready.
112
- *
113
- * @see Plugin
114
- */
115
- function loadDevPlugins ( ) {
116
- import . meta. glob ( [ './plugins/*.index.{js,ts,tsx}' ] , { eager : true } ) ;
117
- }
118
-
119
107
/**
120
108
* Load external, then local plugins. Then initialize() them in order with a Registry.
121
109
*/
122
110
export async function initializePlugins ( ) {
123
- await loadDevPlugins ( ) ;
124
-
125
111
// Initialize every plugin in the order they were loaded.
126
112
return new Promise ( resolve => {
127
113
for ( const pluginName of Object . keys ( window . plugins ) ) {
You can’t perform that action at this time.
0 commit comments