Exclude @vue/runtime-core from processing to fix Vue SSR for nested components (#858)

* Exclude @vue/runtime-core from processing to fix Vue SSR for nested components

* Create seven-shoes-stare.md
This commit is contained in:
Bartek Igielski 2021-07-26 17:14:11 +02:00 committed by GitHub
parent 84e8779faa
commit 1f7914485c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
"@astrojs/renderer-vue": patch
---
Exclude @vue/runtime-core from processing to fix Vue SSR for nested components

View file

@ -4,4 +4,5 @@ export default {
client: './client',
server: './server',
knownEntrypoints: ['vue'],
external: ['@vue/runtime-core'],
};