chatbot-template/next.config.js

18 lines
319 B
JavaScript
Raw Normal View History

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