We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
options.compiler
1 parent 1651aac commit a698346Copy full SHA for a698346
packages/plugin-vue/src/index.ts
@@ -90,14 +90,14 @@ export default function vuePlugin(rawOptions: Options = {}): Plugin {
90
91
let options: ResolvedOptions = {
92
isProduction: process.env.NODE_ENV === 'production',
93
+ compiler: null as any, // to be set in buildStart
94
...rawOptions,
95
include,
96
exclude,
97
customElement,
98
reactivityTransform,
99
root: process.cwd(),
- sourceMap: true,
100
- compiler: null as any // to be set in buildStart
+ sourceMap: true
101
}
102
103
// Temporal handling for 2.7 breaking change
0 commit comments