/** @type {import('next').NextConfig} */ const nextConfig = { images: { domains: ['localhost'], formats: ['image/webp', 'image/avif'], }, // 优化性能 compiler: { removeConsole: process.env.NODE_ENV === 'production', }, output: 'standalone', }; module.exports = nextConfig;