From 9f04c9ca0ce779b13b4aa3d13e59548cd15d3eed Mon Sep 17 00:00:00 2001 From: JonasKruckenberg Date: Mon, 15 Mar 2021 15:21:30 +0100 Subject: [PATCH] fix: remove force option --- packages/vite/src/types.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/vite/src/types.ts b/packages/vite/src/types.ts index c4796fcf..b60c577a 100644 --- a/packages/vite/src/types.ts +++ b/packages/vite/src/types.ts @@ -32,14 +32,6 @@ export interface PluginOptions { * This list will be merged with the builtin output formats before determining the format to use. * @default [] */ - - /** - * By default vite-imagetools only generates output metadata during development mode - * and only generates the actual images in build mode. - * You can set this option to `true` to override this behaviour. - * @default false - */ - force: boolean extendOutputFormats?: (builtins: Record) => Record /**