We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 943f4ab commit 87bad9bCopy full SHA for 87bad9b
packages/plugin-vue/src/index.ts
@@ -57,16 +57,6 @@ export interface Options {
57
*/
58
reactivityTransform?: boolean | string | RegExp | (string | RegExp)[]
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
/**
71
* Use custom compiler-sfc instance. Can be used to force a specific version.
72
@@ -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
0 commit comments