attempt to fix build issues (#985)

This commit is contained in:
Vikhyath Mondreti
2025-08-15 15:21:34 -07:00
committed by GitHub
parent 03bb437e09
commit 2e027dd77d

View File

@@ -208,13 +208,13 @@ const nextConfig: NextConfig = {
source: '/((?!api|_next|_vercel|favicon|static|.*\\..*).*)',
destination: 'https://www.sim.ai/$1',
permanent: true,
has: [{ type: 'host', key: 'host', value: 'simstudio.ai' }],
has: [{ type: 'host' as const, value: 'simstudio.ai' }],
},
{
source: '/((?!api|_next|_vercel|favicon|static|.*\\..*).*)',
destination: 'https://www.sim.ai/$1',
permanent: true,
has: [{ type: 'host', key: 'host', value: 'www.simstudio.ai' }],
has: [{ type: 'host' as const, value: 'www.simstudio.ai' }],
}
)
}