You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest template that you get when using npm create solid to create a SolidStart projects seems to be using Vinxi as build tool, which uses Vite internally. The documentation for setting upp Solid Developer Tools on the server side explains how to set it up as a Vite plugin but the documentation for Vite plugins for Vinxi is nonexistent as of writing this issue. While i know that this is technically an issue on Vinxi's side I am wondering if there are any easy instructions for setting this up with the newest SolidStart template?
The text was updated successfully, but these errors were encountered:
Using these instructions, apply the devtools plugin to the vite key in defineConfig() in app.config.ts
import{defineConfig}from"@solidjs/start/config";importdevtoolsfrom'solid-devtools/vite';exportdefaultdefineConfig({vite: {plugins: [devtools({/* features options - all disabled by default */autoname: true,// e.g. enable autoname}),],}});
The latest template that you get when using
npm create solid
to create a SolidStart projects seems to be using Vinxi as build tool, which uses Vite internally. The documentation for setting upp Solid Developer Tools on the server side explains how to set it up as a Vite plugin but the documentation for Vite plugins for Vinxi is nonexistent as of writing this issue. While i know that this is technically an issue on Vinxi's side I am wondering if there are any easy instructions for setting this up with the newest SolidStart template?The text was updated successfully, but these errors were encountered: