solid-devtools icon indicating copy to clipboard operation
solid-devtools copied to clipboard

Solid not detected after following instructions

Open nikitavoloboev opened this issue 1 year ago • 1 comments

I have a solid start project together with solid-devtools setup here: https://github.com/nikitavoloboev/try/tree/main/solid

I followed instructions here: https://github.com/thetarnav/solid-devtools/tree/main/packages/extension#getting-started

But even after following them the extension is not detecting solid for me for some reason:

image

Not sure if I missed anything perhaps. My vite config looks like

import solid from "solid-start/vite"
import { defineConfig } from "vite"
import devtools from "solid-devtools/vite"

export default defineConfig({
  plugins: [
    devtools({
      autoname: true,
      locator: {
        targetIDE: "vscode-insiders",
        componentLocation: true,
        jsxLocation: true,
      },
    }),
    solid(),
  ],
})

nikitavoloboev avatar Mar 06 '23 13:03 nikitavoloboev

same thing, not detected for solid start.

Update: it works now. I restarted the dev server and reload the webpage. But it doesn't show any data.

tombohub avatar Jul 09 '23 02:07 tombohub