()
| 13 | }, |
| 14 | }, |
| 15 | async rewrites() { |
| 16 | return [ |
| 17 | { |
| 18 | source: "/ingest/static/:path*", |
| 19 | destination: "https://us-assets.i.posthog.com/static/:path*", |
| 20 | }, |
| 21 | { |
| 22 | source: "/ingest/:path*", |
| 23 | destination: "https://us.i.posthog.com/:path*", |
| 24 | }, |
| 25 | { |
| 26 | source: "/ingest/decide", |
| 27 | destination: "https://us.i.posthog.com/decide", |
| 28 | }, |
| 29 | ]; |
| 30 | }, |
| 31 | // This is required to support PostHog trailing slash API requests |
| 32 | skipTrailingSlashRedirect: true, |
| 33 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected