Skip to content

Commit 0e3467e

Browse files
fix: incorrect environment consumer option resolution (#18079)
1 parent 587ad7b commit 0e3467e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vite/src/node/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ function resolveEnvironmentOptions(
641641
)
642642
const isClientEnvironment = environmentName === 'client'
643643
const consumer =
644-
(options.consumer ?? isClientEnvironment) ? 'client' : 'server'
644+
options.consumer ?? (isClientEnvironment ? 'client' : 'server')
645645
return {
646646
resolve,
647647
consumer,

0 commit comments

Comments
 (0)