Files
instrucoes_gerais/clube67/newwhats.local/frontend/next.config.mjs
T

20 lines
326 B
JavaScript

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