Files
--/next.config.ts
2026-01-22 10:03:04 +08:00

20 lines
423 B
TypeScript

import type { NextConfig } from 'next';
import path from 'path';
const nextConfig: NextConfig = {
// outputFileTracingRoot: path.resolve(__dirname, '../../'),
/* config options here */
allowedDevOrigins: ['*.dev.coze.site'],
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'lf-coze-web-cdn.coze.cn',
pathname: '/**',
},
],
},
};
export default nextConfig;