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: about 1 month ago
JSON representation

Rsbuild Plugin Vue Inspector

Lists

README

        


rsbuild-plugin-vue-inspector


NPM Version
NPM Downloads
Minizip
Contributors
License

## 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


rsbuild-plugin-vue-inspector

## 📦 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()],
});
```