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

30 lines
449 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",
}; //
export default nextConfig;