vision-agent / next.config.js
wuyiqunLu
feat: log request param to loki (#24)
314f2dc unverified
raw
history blame
261 Bytes
/** @type {import('next').NextConfig} */
module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
experimental: {
serverComponentsExternalPackages: ['pino', 'pino-loki'],
}
};