@whop/react
Version:
React SDK for building embedded apps on Whop
15 lines (14 loc) • 408 B
TypeScript
export type NextConfigObject = {
experimental?: {
serverActions?: {
allowedOrigins?: string[];
};
optimizePackageImports?: string[];
};
};
export type WhopAppOptions = {
/**
* The domain ID of your whop app. Will enhance app security by ensuring that only requests from your app are allowed to access the server actions.
*/
domainId?: string;
};