We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
这是一款基于 webpack/vite 的 页面元素源代码自动定位工具,只需要引入 webpack/vite 插件,在开发环境下点击页面上的 DOM 元素,能够自动帮你定位到元素对应的 VSCode 源代码的位置,从而大幅提升你的开发效率。
使用方式很简单,以 vite 的插件为例,只需要两步:
执行以下命令安装插件
npm i vite-code-inspector-plugin -D
在 vite.config.js 中添加以下配置:
vite.config.js
// vite.config.js import { defineConfig } from 'vite'; import { ViteCodeInspectorPlugin } from 'vite-code-inspector-plugin'; export default defineConfig({ plugins: [ViteCodeInspectorPlugin()], });
code-inspector
The text was updated successfully, but these errors were encountered:
No branches or pull requests
这是一款基于 webpack/vite 的 页面元素源代码自动定位工具,只需要引入 webpack/vite 插件,在开发环境下点击页面上的 DOM 元素,能够自动帮你定位到元素对应的 VSCode 源代码的位置,从而大幅提升你的开发效率。
使用效果如下
安装使用
使用方式很简单,以 vite 的插件为例,只需要两步:
执行以下命令安装插件
在
vite.config.js
中添加以下配置:项目 GITHUB 地址
code-inspector
The text was updated successfully, but these errors were encountered: