vision-agent / next.config.js
wuyiqunLu
feat: do not use edge for vision agent api (#26)
76503b7 unverified
raw history blame
No virus
262 Bytes
/** @type {import('next').NextConfig} */
module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
experimental: {
serverComponentsExternalPackages: ['pino', 'pino-loki'],
},
};