@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.
@@ -4622,8 +4622,7 @@ query: {`;
4622
4622
  let url2 = "`";
4623
4623
  const viewArr = s3.genViewArr();
4624
4624
  if (Array.isArray(viewArr) && viewArr.length) {
4625
- const prefixPath = s3.frontend?.prefixPath;
4626
- url2 += `${prefixPath}/${viewArr.join("/")}`;
4625
+ url2 += `/${viewArr.join("/")}`;
4627
4626
  const { completeArguments } = s3;
4628
4627
  if (completeArguments.length) {
4629
4628
  const node = s3.viewNode;
@@ -9926,7 +9925,8 @@ var Vue3PlatformBuilderPlugin = class {
9926
9925
  const self = {
9927
9926
  ...routesExtractionPlugin.functions
9928
9927
  };
9929
- const { authResourcePaths, baseResourcePaths } = self.extractRoute(ir.views, "/", {
9928
+ const basePath = ir.configs.basePlatformConfig.basePath + "/";
9929
+ const { authResourcePaths, baseResourcePaths } = self.extractRoute(ir.views, basePath, {
9930
9930
  lazy: false,
9931
9931
  frameworkKind: "vue3"
9932
9932
  });