turbopack

This commit is contained in:
alma 2026-01-11 10:09:50 +01:00
parent afe06fe426
commit 0378cff2a7
2 changed files with 4 additions and 1 deletions

View File

@ -39,6 +39,9 @@ export async function GET(request: Request) {
// Get raw source content
const { source, envelope } = message;
if (!source) {
return NextResponse.json({ error: 'Email source not available' }, { status: 404 });
}
const rawSource = source.toString();
// Parse the email with multiple options to debug

View File

@ -7,7 +7,7 @@
"author": "Neah Team",
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "next build --turbopack",
"start": "next start",
"lint": "next lint",
"sync-users": "node scripts/sync-users.js",