mirror of
https://github.com/withastro/astro.git
synced 2025-01-20 22:12:38 -05:00
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:
parent
84e8779faa
commit
1f7914485c
2 changed files with 6 additions and 0 deletions
5
.changeset/seven-shoes-stare.md
Normal file
5
.changeset/seven-shoes-stare.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
"@astrojs/renderer-vue": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Exclude @vue/runtime-core from processing to fix Vue SSR for nested components
|
|
@ -4,4 +4,5 @@ export default {
|
||||||
client: './client',
|
client: './client',
|
||||||
server: './server',
|
server: './server',
|
||||||
knownEntrypoints: ['vue'],
|
knownEntrypoints: ['vue'],
|
||||||
|
external: ['@vue/runtime-core'],
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue