cloudcmd 19.3.9 → 19.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12365,11 +12365,14 @@ const createCloudMenu = async (fm, options, menuData) => {
12365
12365
  };
12366
12366
  async function loadMenu() {
12367
12367
  if (CloudCmd.config('menu') === 'aleman') {
12368
+ const {
12369
+ prefix
12370
+ } = CloudCmd;
12368
12371
  const {
12369
12372
  host,
12370
12373
  protocol
12371
12374
  } = globalThis.location;
12372
- const url = `${protocol}//${host}/node_modules/aleman/menu/menu.js`;
12375
+ const url = `${protocol}//${host}${prefix}/node_modules/aleman/menu/menu.js`;
12373
12376
  const {
12374
12377
  createMenu
12375
12378
  } = await import(/* webpackIgnore: true */url);