Hide left-panels's url when PANEL open

Hello.
Left-panle on my project loaded by route like this:

{
path: ‘/left-panel/’,
panel: {
componentUrl: ‘/pages/panel_left.html’,
}
},

But i dont want see in url http://myproject.com/left-panel, when panel is opened.
Is there a way to hide the url of a specific route?

Why it’s need me?
If you reload the site page when the panel is open, the site will not load correctly, Because route path / left-panel / is a panel and not a separate page.

{
  path: ‘/left-panel/’,
  panel: {
    componentUrl: ‘/pages/panel_left.html’,
  },
  options: {
      pushState: false,
      history: false,    
  },
},
1 Like

thank you! It’s all i need.