feat!(schema): enable external vue by default (#6868)

This commit is contained in:
Daniel Roe 2022-08-23 12:35:00 +01:00 committed by GitHub
parent cfb7e59171
commit 51dc73628c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ export default {
* Externalize `vue`, `@vue/*` and `vue-router` when building.
* @see https://github.com/nuxt/framework/issues/4084
*/
externalVue: false,
externalVue: true,
/**
* Tree shakes contents of client-only components from server bundle.
@ -49,6 +49,6 @@ export default {
*
* @see https://github.com/nuxt/framework/issues/6432
*/
viteServerDynamicImports: true
viteServerDynamicImports: true
}
}