From 19d9946fcc85849d6ab7848098bf0a4cacabcdaf Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Wed, 27 Nov 2024 13:06:38 +0000 Subject: [PATCH] refactor: remove duplicate PagesConfigFields interface --- packages/wrangler/src/config/config.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/packages/wrangler/src/config/config.ts b/packages/wrangler/src/config/config.ts index 5b12cc58adf3..a0f7284b3aff 100644 --- a/packages/wrangler/src/config/config.ts +++ b/packages/wrangler/src/config/config.ts @@ -30,18 +30,6 @@ export type RawConfig = Partial> & DeprecatedConfigFields & EnvironmentMap & { $schema?: string }; -// Pages-specific configuration fields -interface PagesConfigFields { - /** - * The directory of static assets to serve. - * - * The presence of this field in a Wrangler configuration file indicates a Pages project, - * and will prompt the handling of the configuration file according to the - * Pages-specific validation rules. - */ - pages_build_output_dir?: string; -} - export interface ConfigFields { configPath: string | undefined;