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 f2f4529 commit 7b88999Copy full SHA for 7b88999
packages/vite/src/node/config.ts
@@ -535,6 +535,13 @@ export interface ExperimentalOptions {
535
* @default false
536
*/
537
enableNativePlugin?: boolean | 'resolver'
538
+ /**
539
+ * Enable full bundle mode in dev.
540
+ *
541
+ * @experimental
542
+ * @default false
543
+ */
544
+ fullBundleMode?: boolean
545
}
546
547
export interface LegacyOptions {
@@ -733,6 +740,7 @@ export const configDefaults = Object.freeze({
733
740
enableNativePlugin: process.env._VITE_TEST_NATIVE_PLUGIN
734
741
? 'resolver'
735
742
: false,
743
+ fullBundleMode: false,
736
744
},
737
745
future: {
738
746
removePluginHookHandleHotUpdate: undefined,
0 commit comments