diff --git a/apps/web/next.config.ts b/apps/web/next.config.ts index 805bbbe..481c822 100644 --- a/apps/web/next.config.ts +++ b/apps/web/next.config.ts @@ -3,21 +3,6 @@ import type { NextConfig } from 'next'; const nextConfig: NextConfig = { transpilePackages: ['@tpmjs/ui', '@tpmjs/utils', '@tpmjs/db', '@tpmjs/types', '@tpmjs/env'], reactStrictMode: true, - async redirects() { - return [ - { - source: '/((?!api).*)', - has: [ - { - type: 'host', - value: 'www.tpmjs.com', - }, - ], - destination: 'https://tpmjs.com/$1', - permanent: true, - }, - ]; - }, }; export default nextConfig;