Skip to main content

nextjs-deployment

Facilitates Next.js deployment with configurations for Vercel, Node.js, Docker, and CI/CD, ensuring production-ready setups.

Install this skill

or
69/100

Security score

The nextjs-deployment skill was audited on May 21, 2026 and we found 15 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 160

Template literal with variable interpolation in command context

SourceSKILL.md
160console.log(`> Ready on http://${hostname}:${port}`);
medium line 518

Template literal with variable interpolation in command context

SourceSKILL.md
518```yaml
medium line 32

Access to .env file

SourceSKILL.md
32| Development | `.env.local` | Local dev |
medium line 33

Access to .env file

SourceSKILL.md
33| Production | `.env.production` | Build time |
low line 76

Access to .env file

SourceSKILL.md
76vercel env pull .env.local
low line 137

Access to .env file

SourceSKILL.md
137const dev = process.env.NODE_ENV !== 'production';
low line 138

Access to .env file

SourceSKILL.md
138const hostname = process.env.HOSTNAME || 'localhost';
low line 139

Access to .env file

SourceSKILL.md
139const port = parseInt(process.env.PORT || '3000', 10);
low line 379

Access to .env file

SourceSKILL.md
379# .env.production
low line 483

Access to .env file

SourceSKILL.md
483dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
low line 111

External URL reference

SourceSKILL.md
111"destination": "https://api.example.com/:path*"
low line 160

External URL reference

SourceSKILL.md
160console.log(`> Ready on http://${hostname}:${port}`);
low line 280

External URL reference

SourceSKILL.md
280- NEXTAUTH_URL=http://localhost:3000
low line 382

External URL reference

SourceSKILL.md
382NEXTAUTH_URL=https://myapp.com
low line 383

External URL reference

SourceSKILL.md
383NEXT_PUBLIC_API_URL=https://api.myapp.com
Scanned on May 21, 2026
View Security Dashboard
Installation guide →