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 10b5eaf commit 2e411dbCopy full SHA for 2e411db
packages/vite/src/node/config.ts
@@ -531,6 +531,13 @@ export interface ExperimentalOptions {
531
* @default false
532
*/
533
enableNativePlugin?: boolean | 'resolver'
534
+ /**
535
+ * Enable full bundle mode in dev.
536
+ *
537
+ * @experimental
538
+ * @default false
539
+ */
540
+ fullBundleMode?: boolean
541
}
542
543
export interface LegacyOptions {
@@ -727,6 +734,7 @@ export const configDefaults = Object.freeze({
727
734
enableNativePlugin: process.env._VITE_TEST_NATIVE_PLUGIN
728
735
? 'resolver'
729
736
: false,
737
+ fullBundleMode: false,
730
738
},
731
739
future: {
732
740
removePluginHookHandleHotUpdate: undefined,
0 commit comments