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 38f0c09 commit 91982c7Copy full SHA for 91982c7
packages/vite/src/node/config.ts
@@ -546,6 +546,13 @@ export interface ExperimentalOptions {
546
* @default 'resolver'
547
*/
548
enableNativePlugin?: boolean | 'resolver'
549
+ /**
550
+ * Enable full bundle mode in dev.
551
+ *
552
+ * @experimental
553
+ * @default false
554
+ */
555
+ fullBundleMode?: boolean
556
}
557
558
export interface LegacyOptions {
@@ -747,6 +754,7 @@ export const configDefaults = Object.freeze({
747
754
renderBuiltUrl: undefined,
748
755
hmrPartialAccept: false,
749
756
enableNativePlugin: process.env._VITE_TEST_JS_PLUGIN ? false : 'resolver',
757
+ fullBundleMode: false,
750
758
},
751
759
future: {
752
760
removePluginHookHandleHotUpdate: undefined,
0 commit comments