We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63c3548 commit ceac86eCopy full SHA for ceac86e
packages/schema/src/config/experimental.ts
@@ -93,7 +93,7 @@ export default defineUntypedSchema({
93
return false
94
}
95
// Enabled by default for vite prod with ssr (for vue components)
96
- return val ?? ((id: string) => id && id.includes('.vue'))
+ return val ?? ((await get('future') as Record<string, unknown>).compatibilityVersion === 4 ? (id: string) => id && id.includes('.vue') : true)
97
},
98
99
0 commit comments