The app isn't starting. Please investigate what could be wrong based on

This commit is contained in:
Leon Serfaty G
2025-12-26 02:23:05 +00:00
parent dd3cb8ffcf
commit 0f76f3b1ff
+24
View File
@@ -0,0 +1,24 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
output: 'standalone',
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'placehold.co',
port: '',
pathname: '/**',
},
],
},
};
module.exports = nextConfig;