- Next.js 14 with App Router - Prisma schema for Pipeline and Stage models - Pipeline state machine (manager.ts) - API routes: health, pipelines CRUD, start - Landing page with pipeline visualization - Dark theme with Tailwind CSS - Environment setup with .env.example
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['@prisma/client'],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|