14 lines
427 B
JavaScript
14 lines
427 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Allow the Coolify deployment domain to access Next.js dev resources.
|
|
// (Only relevant in dev mode - ignored in production builds)
|
|
allowedDevOrigins: ['r48w884socg80c8sw0c04cow.203.24.51.230.sslip.io'],
|
|
|
|
// Skip TypeScript type errors during production build (safety net).
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|