Skip to content

Conversation

@oven-one
Copy link

No description provided.

- Configure custom Vercel deployment for AI SaaS apps
- Include AI model and payment integration environment variables
- Add AI-specific customization options (models, features)
@vercel
Copy link

vercel bot commented Oct 31, 2025

@oven-one is attempting to deploy a commit to the Vercel Team on Vercel.

A member of the Team first needs to authorize it.

Comment on lines +49 to +50
"STRIPE_SECRET_KEY",
"STRIPE_WEBHOOK_SECRET",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"STRIPE_SECRET_KEY",
"STRIPE_WEBHOOK_SECRET",

The environmentVariables array contains duplicate entries for STRIPE_SECRET_KEY (lines 43 and 49) and STRIPE_WEBHOOK_SECRET (lines 44 and 50).

View Details

Analysis

Duplicate environment variable entries in .line/config.js

What fails: The environmentVariables array in .line/config.js contains duplicate entries for STRIPE_SECRET_KEY and STRIPE_WEBHOOK_SECRET (appearing at indices 1,7 and 2,8 respectively)

How to reproduce:

node -e "const config = require('./.line/config.js'); console.log('Length:', config.environmentVariables.length, 'Unique:', [...new Set(config.environmentVariables)].length)"

Result: Array length is 11 but only contains 9 unique variables. Validation processing iterates 11 times instead of 9, and conversion to Set/Map silently removes duplicates creating inconsistent behavior

Expected: Environment variables array should contain each required variable exactly once, resulting in array length matching unique variable count

Copy link

@diorwave diorwave left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes requested

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants