Files
instrucoes_gerais/clube67/newwhats.local/frontend/next.config.mjs
T
2026-05-11 08:15:14 +02:00

23 lines
376 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
typescript: {
ignoreBuildErrors: true,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
{
protocol: 'http',
hostname: 'localhost',
port: '8001',
}
],
},
}
export default nextConfig;