vision-agent / next.config.js
wuyiqunLu
feat: add docker file to deploy to hf (#37)
085b520 unverified
raw history blame
No virus
335 Bytes
/** @type {import('next').NextConfig} */
module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
experimental: {
serverComponentsExternalPackages: ['pino', 'pino-loki'],
},
...(process.env.USE_STANDALONE_BUILD ? { output: 'standalone' } : {}),
};