2026-01-22 09:40:07 +08:00
|
|
|
import type { NextConfig } from 'next';
|
|
|
|
|
import path from 'path';
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-01-22 10:03:04 +08:00
|
|
|
// outputFileTracingRoot: path.resolve(__dirname, '../../'),
|
2026-01-22 09:40:07 +08:00
|
|
|
/* config options here */
|
|
|
|
|
allowedDevOrigins: ['*.dev.coze.site'],
|
|
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: 'https',
|
|
|
|
|
hostname: 'lf-coze-web-cdn.coze.cn',
|
|
|
|
|
pathname: '/**',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|