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 4ec1800 commit 75c1ad6Copy full SHA for 75c1ad6
packages/vite/src/node/cli.ts
@@ -35,7 +35,7 @@ interface GlobalCLIOptions {
35
}
36
37
interface ExperimentalDevOptions {
38
- fullBundleMode?: boolean
+ fullBundle?: boolean
39
40
41
interface BuilderCLIOptions {
@@ -180,7 +180,7 @@ cli
180
'--force',
181
`[boolean] force the optimizer to ignore the cache and re-bundle`,
182
)
183
- .option('--fullBundleMode', `[boolean] use experimental full bundle mode`)
+ .option('--fullBundle', `[boolean] use experimental full bundle mode`)
184
.action(
185
async (
186
root: string,
@@ -202,7 +202,7 @@ cli
202
server: cleanGlobalCLIOptions(options),
203
forceOptimizeDeps: options.force,
204
experimental: {
205
- fullBundleMode: options.fullBundleMode,
+ fullBundleMode: options.fullBundle,
206
},
207
})
208
0 commit comments