diff --git a/apps/www/next.config.js b/apps/www/next.config.js new file mode 100644 index 0000000..0ce5372 --- /dev/null +++ b/apps/www/next.config.js @@ -0,0 +1,33 @@ +/** @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", + experimental: { + // Disable static error pages generation + staticPageGenerationTimeout: 0, + }, +}; + +export default nextConfig;