39525-vm/next.config.mjs
2026-04-08 21:53:35 +00:00

23 lines
490 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: "https",
hostname: "image.tmdb.org",
pathname: "/t/p/**",
},
],
},
devIndicators: {
appIsrStatus: false,
},
// Allow host for dev server to fix HMR/WebSocket issues
allowedDevOrigins: ['infocusmovieapp-3455.dev.appwizzy.dev'],
}
export default nextConfig