Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions packages/vite/src/node/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,27 @@ function resolveEnvironmentOptions(
options.consumer ?? (isClientEnvironment ? 'client' : 'server')
const isSsrTargetWebworkerEnvironment =
isSsrTargetWebworkerSet && environmentName === 'ssr'

if (options.define?.['process.env']) {
const processEnvDefine = options.define['process.env']
if (typeof processEnvDefine === 'object') {
const pathKey = Object.entries(processEnvDefine).find(
// check with toLowerCase() to match with `Path` / `PATH` (Windows uses `Path`)
([key, value]) => key.toLowerCase() === 'path' && !!value,
)?.[0]
if (pathKey) {
logger.warnOnce(
colors.yellow(
`The \`define\` option contains an object with ${JSON.stringify(pathKey)} for "process.env" key. ` +
'It looks like you may have passed the entire `process.env` object to `define`, ' +
'which can unintentionally expose all environment variables. ' +
'This poses a security risk and is discouraged.',
),
)
}
}
}

const resolve = resolveEnvironmentResolveOptions(
options.resolve,
alias,
Expand Down