I need to make this redirect with relative path. Is it possible?
{
path: 'path1',
component: componentOne,
children: [
{
path: 'child',
redirectTo: 'path2'
}
}
{
path: 'path2'
component: componentTwo
}
I've tried smth like this redirectTo: '../path2'
and it isn't work.