@@ -44,13 +44,15 @@ export interface VitePluginVueDevToolsOptions {
44
44
/**
45
45
* Customize openInEditor host (e.g. http://localhost:3000)
46
46
* @default false
47
+ * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
47
48
*/
48
49
openInEditorHost ?: string | false
49
50
50
51
/**
51
52
* DevTools client host (e.g. http://localhost:3000)
52
53
* useful for projects that use a reverse proxy
53
54
* @default false
55
+ * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
54
56
*/
55
57
clientHost ?: string | false
56
58
@@ -62,14 +64,12 @@ export interface VitePluginVueDevToolsOptions {
62
64
componentInspector ?: boolean | VitePluginInspectorOptions
63
65
}
64
66
65
- const defaultOptions : DeepRequired < VitePluginVueDevToolsOptions > = {
67
+ const defaultOptions : VitePluginVueDevToolsOptions = {
66
68
appendTo : '' ,
67
- openInEditorHost : false ,
68
- clientHost : false ,
69
69
componentInspector : true ,
70
70
}
71
71
72
- function mergeOptions ( options : VitePluginVueDevToolsOptions ) : DeepRequired < VitePluginVueDevToolsOptions > {
72
+ function mergeOptions ( options : VitePluginVueDevToolsOptions ) : VitePluginVueDevToolsOptions {
73
73
return Object . assign ( { } , defaultOptions , options )
74
74
}
75
75
@@ -137,19 +137,20 @@ export default function VitePluginVueDevTools(options?: VitePluginVueDevToolsOpt
137
137
} ,
138
138
async load ( id ) {
139
139
if ( id === 'virtual:vue-devtools-options' )
140
- return `export default ${ JSON . stringify ( { base : config . base , clientHost : pluginOptions . clientHost , componentInspector : pluginOptions . componentInspector } ) } `
140
+ return `export default ${ JSON . stringify ( { base : config . base , componentInspector : pluginOptions . componentInspector } ) } `
141
141
} ,
142
142
transform ( code , id ) {
143
- const { root, base } = config
143
+ const { root } = config
144
144
145
- const projectPath = `${ root } ${ base } `
145
+ const projectPath = `${ root } `
146
146
147
147
if ( ! id . startsWith ( projectPath ) )
148
148
return
149
149
150
150
const { appendTo } = pluginOptions
151
151
152
152
const [ filename ] = id . split ( '?' , 2 )
153
+
153
154
if ( appendTo
154
155
&& (
155
156
( typeof appendTo === 'string' && filename . endsWith ( appendTo ) )
@@ -197,7 +198,6 @@ export default function VitePluginVueDevTools(options?: VitePluginVueDevToolsOpt
197
198
...typeof pluginOptions . componentInspector === 'boolean'
198
199
? { }
199
200
: pluginOptions . componentInspector ,
200
- openInEditorHost : pluginOptions . openInEditorHost ,
201
201
appendTo : pluginOptions . appendTo || 'manually' ,
202
202
} ) as PluginOption ,
203
203
plugin ,
0 commit comments