We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01e5e47 commit f13ec43Copy full SHA for f13ec43
packages/plugin-vue/src/index.ts
@@ -76,11 +76,12 @@ export default function vuePlugin(rawOptions: Options = {}): Plugin {
76
return handleHotUpdate(ctx)
77
},
78
79
- config() {
+ config(config) {
80
return {
81
define: {
82
__VUE_OPTIONS_API__: true,
83
- __VUE_PROD_DEVTOOLS__: false
+ __VUE_PROD_DEVTOOLS__: false,
84
+ ...config.define
85
86
ssr: {
87
external: ['vue', '@vue/server-renderer']
0 commit comments