white c letter with a black background

constt

Svelte Debugger

Svelte Debugger snippet

Tags:

svelte

debug

Add this little code snipppet to you svelte config in the export default and you get a nice little debug button at the bottom right.

svelte.config.js

vitePlugin: {
	inspector: {
        showToggleButton: 'always',
        toggleButtonPos: 'bottom-right'
	}
}