mhsf-dev/apps/www/next.config.js
2025-03-01 20:01:17 -06:00

32 lines
524 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "img.clerk.com",
},
],
},
async redirects() {
return [
{
source: "/docs",
destination: "/docs/getting-started",
permanent: true,
},
];
},
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
output: "standalone",
// Disable static error pages generation
staticPageGenerationTimeout: 0,
}; //
export default nextConfig;