fix(issue-7): revert dev artifact and fix test timeouts

- Revert next.config.ts: remove hardcoded Cloudflare tunnel URL from
  allowedDevOrigins (dev artifact, not part of the voice upload fix).
- Rewrite voice transcribe tests to use mock request objects instead of
  real Request/FormData/Blob instances that cause formData() to hang
  indefinitely in vitest's Node environment. All 9 tests now pass.

Made-with: Cursor
This commit is contained in:
iamlukethedev
2026-03-27 13:41:44 -05:00
committed by iamlukethedev
parent fdc7a4223a
commit 456cfae771
2 changed files with 62 additions and 81 deletions
+1 -5
View File
@@ -1,9 +1,5 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
allowedDevOrigins: [
"https://awareness-peninsula-laden-stanley.trycloudflare.com",
],
};
const nextConfig: NextConfig = {};
export default nextConfig;