vision-agent / next.config.js
MingruiZhang's picture
feat: revalidate path / remove create chat api (use server action) / code block style (#53)
71679ee unverified
raw
history blame
No virus
364 Bytes
/** @type {import('next').NextConfig} */
module.exports = {
// reactStrictMode: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
experimental: {
serverComponentsExternalPackages: ['pino', 'pino-loki'],
},
...(process.env.USE_STANDALONE_BUILD ? { output: 'standalone' } : {}),
};