Fix Next.js API route for Amplify WEB_COMPUTE platform

- Add .env.production for Amplify environment variable mapping
- Update artifacts configuration for WEB_COMPUTE platform
- Add explicit nodejs runtime for API route
- Enable serverActions in Next.js config
- Add debugging output for environment variables

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
DaX
2025-06-19 00:38:50 +02:00
parent d5f16af3b3
commit 58d91f78ab
4 changed files with 19 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
import { NextResponse } from 'next/server';
import { fetchFromConfluence } from '../../../src/server/confluence';
export const runtime = 'nodejs';
export async function GET() {
try {
// Get environment variables from server-side only