style: apply prettier formatting across all source files

This commit is contained in:
2026-05-01 18:36:42 +01:00
parent d60c5ae498
commit a351910fd2
15 changed files with 376 additions and 318 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ export async function POST(request: NextRequest) {
const pythonServerUrl = process.env.VIBEVOICE_SERVER_URL ?? "http://localhost:8000";
try {
const body = await request.json() as {
const body = (await request.json()) as {
text: string;
speaker?: string;
cfg_scale?: number;
@@ -41,7 +41,7 @@ export async function POST(request: NextRequest) {
headers: {
"Content-Type": "text/event-stream",
"Cache-Control": "no-cache, no-transform",
"Connection": "keep-alive",
Connection: "keep-alive",
"X-Content-Type-Options": "nosniff",
"X-Accel-Buffering": "no",
},