Skip to content

Commit 19e8c68

Browse files
authored
test: respect commonjs options in playgrounds (#13273)
1 parent 8013a66 commit 19e8c68

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/vite/src/node/config.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,12 @@ export async function resolveConfig(
457457
const userPlugins = [...prePlugins, ...normalPlugins, ...postPlugins]
458458
config = await runConfigHook(config, userPlugins, configEnv)
459459

460-
if (process.env.VITE_TEST_WITHOUT_PLUGIN_COMMONJS) {
460+
// If there are custom commonjsOptions, don't force optimized deps for this test
461+
// even if the env var is set as it would interfere with the playground specs.
462+
if (
463+
!config.build?.commonjsOptions &&
464+
process.env.VITE_TEST_WITHOUT_PLUGIN_COMMONJS
465+
) {
461466
config = mergeConfig(config, {
462467
optimizeDeps: { disabled: false },
463468
ssr: { optimizeDeps: { disabled: false } },

0 commit comments

Comments
 (0)