From ceec40528f7639b65fb0dc9b63be04abbb830bed Mon Sep 17 00:00:00 2001 From: Aaron Date: Sat, 16 Nov 2024 16:37:22 -0600 Subject: [PATCH] fix: Remove unnecessary `VITE_CJS_IGNORE_WARNING` flag --- packages/wxt/src/cli/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/wxt/src/cli/index.ts b/packages/wxt/src/cli/index.ts index 29002fd4..d9b7ddfa 100644 --- a/packages/wxt/src/cli/index.ts +++ b/packages/wxt/src/cli/index.ts @@ -2,9 +2,6 @@ import cli from './commands'; import { version } from '../version'; import { isAliasedCommand } from './cli-utils'; -// TODO: Remove. See https://github.com/wxt-dev/wxt/issues/277 -process.env.VITE_CJS_IGNORE_WARNING = 'true'; - // Grab the command that we're trying to run cli.parse(process.argv, { run: false });