Variable ACTIONS_CORS_HEADERS_MIDDLEWAREConst

ACTIONS_CORS_HEADERS_MIDDLEWARE: {
    allowedHeaders: string[];
    exposedHeaders: string[];
    methods: string[];
    origin: string;
} = ...

Standard headers for use within frameworks that use middleware to handle CORS headers (like Hono, Express, and Fastify)

Note: origin=* should ONLY be set on your Actions API routes and actions.json. Setting "allow origin to any" on other routes on your server is bad practice and should be avoided.