pluginagentmarketplace/custom-plugin-nextjs · Archived

deployment

Next.js deployment - Vercel, Docker, self-hosting strategies

First seen Jan 26, 2026

Installation

$ npx skills add pluginagentmarketplace/custom-plugin-nextjs --skill deployment

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from pluginagentmarketplace/custom-plugin-nextjs.

npx skills add pluginagentmarketplace/custom-plugin-nextjs

Browse all from pluginagentmarketplace/custom-plugin-nextjs

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,195 B
  • docs SUMMARY.md 78 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

Deployment Skill

Overview

Deploy Next.js applications to various platforms with optimal configurations.

Capabilities

  • Vercel: Zero-config deployment
  • Docker: Containerized deployment
  • Self-Hosting: Node.js server
  • Static Export: Static site generation
  • Edge Runtime: Edge function deployment

Examples

# Dockerfile for Next.js
FROM node:18-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build

FROM node:18-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
COPY --from=builder /app/public ./public
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
EXPOSE 3000
CMD ["node", "server.js"]
# Vercel deployment
npm i -g vercel
vercel --prod

# Docker deployment
docker build -t nextjs-app .
docker run -p 3000:3000 nextjs-app

next.config.js Options

module.exports = {
  output: 'standalone', // For Docker
  // output: 'export', // For static
}