chatbot-template/next.config.js
2024-01-20 10:39:02 -06:00

13 lines
241 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
port: '',
pathname: '**'
}
]
}
}