Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/hunghg255/rsbuild-plugin-svelte-inspector

Rsbuild Plugin Svelte Inspector Element
https://github.com/hunghg255/rsbuild-plugin-svelte-inspector

inspector plugin rsbuild svelte

Last synced: about 1 month ago
JSON representation

Rsbuild Plugin Svelte Inspector Element

Lists

README

        


rsbuild-plugin-svelte-inspector


NPM Version
NPM Downloads
Minizip
Contributors
License

## Playground

[Playground](https://github.com/hunghg255/rsbuild-plugin-svelte-inspector/tree/main/playground)

## 📖 Introduction

A rsbuild plugin which provides the ability that to jump to the local IDE when you click the element of browser automatically.


rsbuild-plugin-svelte-inspector

## 📦 Installation

```bash
npm install rsbuild-plugin-svelte-inspector -D
```

## 🦄 Usage

### Configuration in `rsbuild.config.ts`

```ts
import { defineConfig } from '@rsbuild/core';
import { pluginSvelte } from '@rsbuild/plugin-svelte';
import { pluginSvelteInspector } from 'rsbuild-plugin-svelte-inspector';

export default defineConfig({
plugins: [pluginSvelte(), pluginSvelteInspector()],
});
```