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 0969c53 commit 7e9f126Copy full SHA for 7e9f126
packages/vite/src/node/cli.ts
@@ -54,7 +54,7 @@ interface GlobalCLIOptions {
54
}
55
56
interface ExperimentalDevOptions {
57
- fullBundleMode?: boolean
+ fullBundle?: boolean
58
59
60
interface BuilderCLIOptions {
@@ -199,7 +199,7 @@ cli
199
'--force',
200
`[boolean] force the optimizer to ignore the cache and re-bundle`,
201
)
202
- .option('--fullBundleMode', `[boolean] use experimental full bundle mode`)
+ .option('--fullBundle', `[boolean] use experimental full bundle mode`)
203
.action(
204
async (
205
root: string,
@@ -221,7 +221,7 @@ cli
221
server: cleanGlobalCLIOptions(options),
222
forceOptimizeDeps: options.force,
223
experimental: {
224
- fullBundleMode: options.fullBundleMode,
+ fullBundleMode: options.fullBundle,
225
},
226
})
227
0 commit comments