Skip to content

Commit

Permalink
Fix plugin loading
Browse files Browse the repository at this point in the history
  • Loading branch information
tadayosi committed Nov 7, 2023
1 parent dcb5e9b commit 4e1bfac
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ public HawtioPlugin samplePlugin() {
/*
* These are the parameters required to load a remote Hawtio plugin (a.k.a. Module Federation remote module):
*
* - url: The URL of the remote entry for the plugin. This must be the same location as the Hawtio console.
* - scope: The name of the container defined at Webpack ModuleFederationPlugin. See also: sample-plugin/craco.config.js
* - module: The path exposed from Webpack ModuleFederationPlugin. See also: sample-plugin/craco.config.js
* - url: The URL of the remote entry for the plugin, e.g. "http://localhost:8081". (optional)
*/
HawtioPlugin plugin = new HawtioPlugin(
"http://localhost:8080",
"samplePlugin",
"./plugin");

Expand Down

0 comments on commit 4e1bfac

Please sign in to comment.