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 9e0c77f commit b8ad526Copy full SHA for b8ad526
packages/vite/src/node/config.ts
@@ -530,6 +530,13 @@ export interface ExperimentalOptions {
530
* @default false
531
*/
532
enableNativePlugin?: boolean | 'resolver'
533
+ /**
534
+ * Enable full bundle mode in dev.
535
+ *
536
+ * @experimental
537
+ * @default false
538
+ */
539
+ fullBundleMode?: boolean
540
}
541
542
export interface LegacyOptions {
@@ -722,6 +729,7 @@ export const configDefaults = Object.freeze({
722
729
enableNativePlugin: process.env._VITE_TEST_NATIVE_PLUGIN
723
730
? 'resolver'
724
731
: false,
732
+ fullBundleMode: false,
725
733
},
726
734
future: {
727
735
removePluginHookHandleHotUpdate: undefined,
0 commit comments