Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
556 B
Text
15 lines
556 B
Text
import { httpSigningMiddleware } from "./httpSigningMiddleware";
|
|
export const httpSigningMiddlewareOptions = {
|
|
step: "finalizeRequest",
|
|
tags: ["HTTP_SIGNING"],
|
|
name: "httpSigningMiddleware",
|
|
aliases: ["apiKeyMiddleware", "tokenMiddleware", "awsAuthMiddleware"],
|
|
override: true,
|
|
relation: "after",
|
|
toMiddleware: "retryMiddleware",
|
|
};
|
|
export const getHttpSigningPlugin = (config) => ({
|
|
applyToStack: (clientStack) => {
|
|
clientStack.addRelativeTo(httpSigningMiddleware(config), httpSigningMiddlewareOptions);
|
|
},
|
|
});
|