23 lines
489 B
JavaScript
23 lines
489 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
images: {
|
||
|
|
remotePatterns: [
|
||
|
|
{
|
||
|
|
protocol: 'https',
|
||
|
|
hostname: 'hotwives.com.br',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
protocol: 'http',
|
||
|
|
hostname: 'localhost',
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
env: {
|
||
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:3001/api',
|
||
|
|
NEXT_PUBLIC_SOCKET_URL: process.env.NEXT_PUBLIC_SOCKET_URL || 'http://localhost:3001',
|
||
|
|
},
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = nextConfig
|
||
|
|
|