pearai-app icon indicating copy to clipboard operation
pearai-app copied to clipboard

Pear doesn't open when using VUE dev tools.

Open KishanMandora opened this issue 1 year ago • 1 comments

Describe the bug

While trying to navigate to the component from browser using VUE dev tools, it fails to redirect to PEAR from the browser. Screenshot 2024-09-30 at 11 43 40 AM

How to reproduce

Create a vue project and add the following code in defineConfig of vite.config.ts

    vueDevTools(
      {
        launchEditor: 'pear',
      },
    ),

Expected behavior

Expected behaviour would be the code editor navigating to the file where component is defined.

    vueDevTools(
      {
        launchEditor: 'code', // vs code navigates to the component
      },
    ),

Additional information

This is might be related to trypear/pearai-app#45 as it can't find the Path.

KishanMandora avatar Sep 30 '24 06:09 KishanMandora