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
* feat: add dev mode inspector to open editor at location that defines dom element
* wip: add options to inspector, improve inspector ux
* wip: deep config merge, more inspector options, automatic sveltekit support
* wip: add custom cursor, update toggle, cleanup Inspector, add docs
* chore: add changeset and revert target change
* docs: add trigger description to docs
* chore: restore docs headline
* fix: account for experimental possibly being undefined due to new merging; update browser select for testing
* fix: remove hold, skip over node_modules locations, cleanup, docs
* feat: generic combo handling, hold disabled by default, pos and visibility options for toggle, docs
* fix: restore array overwrite behavior in config merge change to avoid a breaking change
* fix: use os dependant default combo to minimize clashes with native behavior
* append an import to the module id ending with `appendTo` instead of adding a script into body
304
+
* useful for frameworks that do not support trannsformIndexHtml hook
305
+
*
306
+
* WARNING: only set this if you know exactly what it does.
307
+
* Regular users of vite-plugin-svelte or SvelteKit do not need it
308
+
*/
309
+
appendTo?:string;
310
+
}
311
+
```
312
+
313
+
Set to `true` or customized `InspectorOptions` to enable svelte inspector during development.
314
+
315
+
When enabled, inspector mode shows you the file location where the element under cursor is defined and you can click to quickly open your code editor at this location.
0 commit comments