@lcap/nasl-unified-frontend-generator 4.0.0-beta.7 → 4.0.0-rc.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.
@@ -4499,8 +4499,7 @@ query: {`;
4499
4499
  let url2 = "`";
4500
4500
  const viewArr = s3.genViewArr();
4501
4501
  if (Array.isArray(viewArr) && viewArr.length) {
4502
- const prefixPath = s3.frontend?.prefixPath;
4503
- url2 += `${prefixPath}/${viewArr.join("/")}`;
4502
+ url2 += `/${viewArr.join("/")}`;
4504
4503
  const { completeArguments } = s3;
4505
4504
  if (completeArguments.length) {
4506
4505
  const node = s3.viewNode;
@@ -9803,7 +9802,8 @@ var Vue3PlatformBuilderPlugin = class {
9803
9802
  const self = {
9804
9803
  ...routesExtractionPlugin.functions
9805
9804
  };
9806
- const { authResourcePaths, baseResourcePaths } = self.extractRoute(ir.views, "/", {
9805
+ const basePath = ir.configs.basePlatformConfig.basePath + "/";
9806
+ const { authResourcePaths, baseResourcePaths } = self.extractRoute(ir.views, basePath, {
9807
9807
  lazy: false,
9808
9808
  frameworkKind: "vue3"
9809
9809
  });