turbopack
This commit is contained in:
parent
afe06fe426
commit
0378cff2a7
@ -39,6 +39,9 @@ export async function GET(request: Request) {
|
|||||||
|
|
||||||
// Get raw source content
|
// Get raw source content
|
||||||
const { source, envelope } = message;
|
const { source, envelope } = message;
|
||||||
|
if (!source) {
|
||||||
|
return NextResponse.json({ error: 'Email source not available' }, { status: 404 });
|
||||||
|
}
|
||||||
const rawSource = source.toString();
|
const rawSource = source.toString();
|
||||||
|
|
||||||
// Parse the email with multiple options to debug
|
// Parse the email with multiple options to debug
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
"author": "Neah Team",
|
"author": "Neah Team",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build --turbopack",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "next lint",
|
"lint": "next lint",
|
||||||
"sync-users": "node scripts/sync-users.js",
|
"sync-users": "node scripts/sync-users.js",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user