Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hunghg255/rsbuild-plugin-vue-inspector
Rsbuild Plugin Vue Inspector
https://github.com/hunghg255/rsbuild-plugin-vue-inspector
inspector plugin rsbuild vue
Last synced: 3 months ago
JSON representation
Rsbuild Plugin Vue Inspector
- Host: GitHub
- URL: https://github.com/hunghg255/rsbuild-plugin-vue-inspector
- Owner: hunghg255
- License: mit
- Created: 2024-02-01T06:37:42.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-31T14:11:28.000Z (5 months ago)
- Last Synced: 2024-07-02T15:48:57.832Z (4 months ago)
- Topics: inspector, plugin, rsbuild, vue
- Language: JavaScript
- Homepage:
- Size: 1.94 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-rspack - rsbuild-plugin-vue-inspector
README
## Playground
[Playground](https://github.com/hunghg255/rsbuild-plugin-vue-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.
- Support Vue3, Vue2
## 📦 Installation
```bash
npm install rsbuild-plugin-vue-inspector -D
```## 🦄 Usage
### Configuration in `rsbuild.config.ts`
```ts
import { defineConfig } from '@rsbuild/core';
import { pluginVue } from '@rsbuild/plugin-vue';import { pluginVueInspector } from 'rsbuild-plugin-vue-inspector';
export default defineConfig({
plugins: [pluginVue(), pluginVueInspector()],
});
```