chatbot-template/next.config.js

17 lines
295 B
JavaScript
Raw Normal View History

2023-06-02 15:21:49 -04:00
/** @type {import('next').NextConfig} */
module.exports = {
2024-01-04 08:32:32 -06:00
experimental: {
windowHistorySupport: true
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
port: '',
2024-01-04 08:32:32 -06:00
pathname: '**'
}
]
}
}