File tree 1 file changed +1
-11
lines changed
1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -57,16 +57,6 @@ export interface Options {
57
57
*/
58
58
reactivityTransform ?: boolean | string | RegExp | ( string | RegExp ) [ ]
59
59
60
- /**
61
- * @deprecated use `reactivityTransform` instead.
62
- */
63
- refTransform ?: any
64
-
65
- /**
66
- * @deprecated the plugin now auto-detects whether it's being invoked for ssr.
67
- */
68
- ssr ?: boolean
69
-
70
60
/**
71
61
* Use custom compiler-sfc instance. Can be used to force a specific version.
72
62
*/
@@ -117,7 +107,7 @@ export default function vuePlugin(rawOptions: Options = {}): Plugin {
117
107
// Temporal handling for 2.7 breaking change
118
108
const isSSR = ( opt : { ssr ?: boolean } | boolean | undefined ) =>
119
109
opt === undefined
120
- ? ! ! options . ssr
110
+ ? false
121
111
: typeof opt === 'boolean'
122
112
? opt
123
113
: opt ?. ssr === true
You can’t perform that action at this time.
0 commit comments