chatbot-template/next.config.js
2024-01-04 08:32:32 -06:00

16 lines
295 B
JavaScript

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