import { NextRequest, NextResponse } from 'next/server'; const API_BASE_URL = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8001'; export async function GET( request: NextRequest, { params }: { params: Promise<{ pipelineId: string }> } ) { try { const { pipelineId } = await params; const url = `${API_BASE_URL}/api/pipelines/${pipelineId}/dashboard`; const response = await fetch(url); if (!response.ok) { return NextResponse.json( { error: 'Failed to fetch dashboard config' }, { status: response.status } ); } const data = await response.json(); return NextResponse.json(data); } catch (error) { console.error('Pipeline dashboard API error:', error); return NextResponse.json( { error: 'Failed to fetch dashboard config' }, { status: 500 } ); } }