turbopack
This commit is contained in:
parent
afe06fe426
commit
0378cff2a7
@ -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
|
||||
|
||||
@ -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",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user