@mcpc-tech/unplugin-dev-inspector-mcp 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/client/dist/inspector.iife.js +320 -320
- package/dist/index.cjs +68 -69
- package/dist/index.d.cts +7 -6
- package/dist/index.d.ts +7 -6
- package/dist/index.js +68 -69
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,8 +99,9 @@ Add DevInspector to your project:
|
|
|
99
99
|
plugins: [
|
|
100
100
|
+ DevInspector.vite({
|
|
101
101
|
+ enabled: true,
|
|
102
|
-
|
|
103
|
-
+
|
|
102
|
+
showInspectorBar: true, // Default: true. Set to false to hide the UI.
|
|
103
|
+
+ autoOpenBrowser: false, // Default: false. Automatically open browser when server starts.
|
|
104
|
+
}),
|
|
104
105
|
react(), // or vue()
|
|
105
106
|
],
|
|
106
107
|
};
|
|
@@ -155,7 +156,6 @@ module.exports = {
|
|
|
155
156
|
plugins: [
|
|
156
157
|
+ DevInspector.webpack({
|
|
157
158
|
+ enabled: true,
|
|
158
|
-
+ enableMcp: true,
|
|
159
159
|
+ }),
|
|
160
160
|
],
|
|
161
161
|
};
|
|
@@ -261,7 +261,6 @@ export default {
|
|
|
261
261
|
plugins: [
|
|
262
262
|
DevInspector.vite({
|
|
263
263
|
enabled: true,
|
|
264
|
-
enableMcp: true,
|
|
265
264
|
// Custom agents (will be merged with default properties)
|
|
266
265
|
agents: [
|
|
267
266
|
{
|