Some checks are pending
Build and Deploy / build (push) Waiting to run
- Remove dev.manoonoils.com from storefront ingress to prevent cross-domain tracking issues - Use environment variable for OpenPanel API URL in route handler - Fixes session state conflicts from multiple domains
6 lines
191 B
TypeScript
6 lines
191 B
TypeScript
import { createRouteHandler } from "@openpanel/nextjs/server";
|
|
|
|
export const { GET, POST } = createRouteHandler({
|
|
apiUrl: process.env.OPENPANEL_API_URL || "https://op.nodecrew.me/api",
|
|
});
|