0.0.2 • Published 3 months ago

rsbuild-plugin-vue-inspector v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Playground

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

npm install rsbuild-plugin-vue-inspector -D

🦄 Usage

Configuration in rsbuild.config.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()],
});