https://github.com/hunghg255/vite-plugin-reactjs-inspector
Vite Plugin React Inpsector
https://github.com/hunghg255/vite-plugin-reactjs-inspector
inspector plugin react vite
Last synced: about 2 months ago
JSON representation
Vite Plugin React Inpsector
- Host: GitHub
- URL: https://github.com/hunghg255/vite-plugin-reactjs-inspector
- Owner: hunghg255
- License: mit
- Created: 2024-01-04T10:24:33.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-03T10:26:18.000Z (9 months ago)
- Last Synced: 2025-08-05T13:52:50.298Z (2 months ago)
- Topics: inspector, plugin, react, vite
- Language: JavaScript
- Homepage:
- Size: 8.77 MB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
A plugin inspector reactjs element for Vitejs## 📖 Introduction
A vite plugin which provides the ability that to jump to the local IDE when you click the element of browser automatically.

## 📦 Installation
```bash
npm install vite-plugin-reactjs-inspector -D
```## 🦄 Usage
### Configuration Vite
```ts
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
import VitePluginReactInspector from 'vite-plugin-reactjs-inspector/vite'// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), VitePluginReactInspector()],
})
```