File tree 2 files changed +0
-6
lines changed
2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ vite build [root]
58
58
| ` --minify [minifier] ` | Enable/disable minification, or specify minifier to use (default: ` "esbuild" ` ) (` boolean \| "terser" \| "esbuild" ` ) |
59
59
| ` --manifest [name] ` | Emit build manifest json (` boolean \| string ` ) |
60
60
| ` --ssrManifest [name] ` | Emit ssr manifest json (` boolean \| string ` ) |
61
- | ` --force ` | Force the optimizer to ignore the cache and re-bundle (experimental)(` boolean ` ) |
62
61
| ` --emptyOutDir ` | Force empty outDir when it's outside of root (` boolean ` ) |
63
62
| ` -w, --watch ` | Rebuilds when modules have changed on disk (` boolean ` ) |
64
63
| ` -c, --config <file> ` | Use specified config file (` string ` ) |
Original file line number Diff line number Diff line change 258
258
)
259
259
. option ( '--manifest [name]' , `[boolean | string] emit build manifest json` )
260
260
. option ( '--ssrManifest [name]' , `[boolean | string] emit ssr manifest json` )
261
- . option (
262
- '--force' ,
263
- `[boolean] force the optimizer to ignore the cache and re-bundle (experimental)` ,
264
- )
265
261
. option (
266
262
'--emptyOutDir' ,
267
263
`[boolean] force empty outDir when it's outside of root` ,
280
276
configFile : options . config ,
281
277
logLevel : options . logLevel ,
282
278
clearScreen : options . clearScreen ,
283
- optimizeDeps : { force : options . force } ,
284
279
build : buildOptions ,
285
280
} )
286
281
} catch ( e ) {
You can’t perform that action at this time.
0 commit comments