[v3][solved] iOS Xcode NSURLConnection finished with error - code -1100

Just finish testing my app via phonegap and browser and everything works ok
I decide to test everything on iOS simulator via Xcode and app is not working

NSURLConnection finished with error - code -1100

this is the error code that I get on each page, I was thinking about JSON end point that on this version of the app are under HTTPS but I get the same error when I try to open a static page that doesn’t load any content from web

I did try on simulator the first test app I did at the beginning with F7 v3 to test some functionality and I get “NSURLConnection finished with error - code -1100” on any link, it seems that the issue is with router

EDIT 01

starting over with “Starter PhoneGap template”
https://framework7.io/templates/

it seems that using componentUrl routing cause the issue
Am I missing something? should I allow some origin in app?

var app = new Framework7({
// App root element
root: '#app',
// App Name
name: 'My App',
// App id
id: 'com.myapp.test',
// Enable swipe panel
panel: {
  swipe: 'left',
},
// Add default routes
routes: [
  {
    path: '/about-01/',
    url: 'about-01.html',
  },
  {
		name: 'about',
		path: '/about/',
		componentUrl: '/pages/about.html',
	},
]
// ... other parameters
});

issue was the path that can’t be absolute BUT relative ./

{
name: ‘about’,
path: ‘/about/’,
componentUrl: ‘./pages/about.html’,
},