feat(schema): add experimental `multiApp` flag (#27291)

This commit is contained in:
Nicolas Payot 2024-05-21 15:42:19 +02:00 committed by GitHub
parent c0b3d0329a
commit 2e25afdfb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -45,6 +45,11 @@ export default defineUntypedSchema({
* @type {3 | 4} * @type {3 | 4}
*/ */
compatibilityVersion: 3, compatibilityVersion: 3,
/**
* This enables early access to the experimental multi-app support.
* @see [Nuxt Issue #21635](https://github.com/nuxt/nuxt/issues/21635)
*/
multiApp: false,
/** /**
* This enables 'Bundler' module resolution mode for TypeScript, which is the recommended setting * This enables 'Bundler' module resolution mode for TypeScript, which is the recommended setting
* for frameworks like Nuxt and Vite. * for frameworks like Nuxt and Vite.