import type { NextConfig } from 'next'; const nextConfig: NextConfig = { // outputFileTracingRoot: path.resolve(__dirname, '../../'), // Uncomment and add 'import path from "path"' if needed /* config options here */ serverExternalPackages: ['coze-coding-dev-sdk'], allowedDevOrigins: ['*.dev.coze.site'], images: { remotePatterns: [ { protocol: 'https', hostname: '*', pathname: '/**', }, ], }, }; export default nextConfig;