mirror of https://github.com/kortix-ai/suna.git
25 lines
600 B
TypeScript
25 lines
600 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig = (): NextConfig => ({
|
|
output: (process.env.NEXT_OUTPUT as 'standalone') || undefined,
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/ingest/static/:path*',
|
|
destination: 'https://eu-assets.i.posthog.com/static/:path*',
|
|
},
|
|
{
|
|
source: '/ingest/:path*',
|
|
destination: 'https://eu.i.posthog.com/:path*',
|
|
},
|
|
{
|
|
source: '/ingest/flags',
|
|
destination: 'https://eu.i.posthog.com/flags',
|
|
},
|
|
];
|
|
},
|
|
skipTrailingSlashRedirect: true,
|
|
});
|
|
|
|
export default nextConfig;
|