Skip to content

Commit 832b2c4

Browse files
authored
feat: warn if define['process.env'] contains path key with a value (#19517)
1 parent edd7be4 commit 832b2c4

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

packages/vite/src/node/config.ts

+21
Original file line numberDiff line numberDiff line change
@@ -790,6 +790,27 @@ function resolveEnvironmentOptions(
790790
options.consumer ?? (isClientEnvironment ? 'client' : 'server')
791791
const isSsrTargetWebworkerEnvironment =
792792
isSsrTargetWebworkerSet && environmentName === 'ssr'
793+
794+
if (options.define?.['process.env']) {
795+
const processEnvDefine = options.define['process.env']
796+
if (typeof processEnvDefine === 'object') {
797+
const pathKey = Object.entries(processEnvDefine).find(
798+
// check with toLowerCase() to match with `Path` / `PATH` (Windows uses `Path`)
799+
([key, value]) => key.toLowerCase() === 'path' && !!value,
800+
)?.[0]
801+
if (pathKey) {
802+
logger.warnOnce(
803+
colors.yellow(
804+
`The \`define\` option contains an object with ${JSON.stringify(pathKey)} for "process.env" key. ` +
805+
'It looks like you may have passed the entire `process.env` object to `define`, ' +
806+
'which can unintentionally expose all environment variables. ' +
807+
'This poses a security risk and is discouraged.',
808+
),
809+
)
810+
}
811+
}
812+
}
813+
793814
const resolve = resolveEnvironmentResolveOptions(
794815
options.resolve,
795816
alias,

0 commit comments

Comments
 (0)