-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext.config.ts
32 lines (31 loc) · 873 Bytes
/
next.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { NextConfig } from "next"
export default {
images: {
remotePatterns: [
{
hostname: "i.ytimg.com",
},
{
hostname: "is2-ssl.mzstatic.com",
},
],
},
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/decide",
destination: "https://eu.i.posthog.com/decide",
},
]
},
// This is required to support PostHog trailing slash API requests
skipTrailingSlashRedirect: true,
} satisfies NextConfig