Ecosyste.ms: Awesome

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

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

Rsbuild plugin react inspector
https://github.com/hunghg255/rsbuild-plugin-react-inspector

inspector plugin react rsbuild

Last synced: 4 months ago
JSON representation

Rsbuild plugin react inspector

Lists

README

        


rsbuild-plugin-react-inspector


NPM Version
NPM Downloads
Minizip
Contributors
License

## Playground

[Playground](https://github.com/hunghg255/rsbuild-plugin-react-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-react-inspector

## 📦 Installation

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

## 🦄 Usage

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

```ts
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';

import { pluginReactInspector } from 'rsbuild-plugin-react-inspector';

export default defineConfig({
plugins: [pluginReact(), pluginReactInspector()],
});
```