From 751eb083c4ca0bc58b97714aee5248b27fb990f8 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Thu, 7 May 2026 21:19:20 +0700 Subject: [PATCH] fix: migrate proxy route logic from route.ts to pages/api/proxy.ts --- next.config.ts | 2 +- app/api/proxy/route.ts => pages/api/proxy.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename app/api/proxy/route.ts => pages/api/proxy.ts (100%) diff --git a/next.config.ts b/next.config.ts index 5e891cf..660b5c7 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,7 @@ import type { NextConfig } from 'next'; const nextConfig: NextConfig = { - /* config options here */ + trailingSlash: false, }; export default nextConfig; diff --git a/app/api/proxy/route.ts b/pages/api/proxy.ts similarity index 100% rename from app/api/proxy/route.ts rename to pages/api/proxy.ts