Skip to content

Commit

Permalink
Merge pull request #2 from rwieruch/2024-12_stripe_provisioning
Browse files Browse the repository at this point in the history
2024 12 stripe provisioning
  • Loading branch information
rwieruch authored Jan 3, 2025
2 parents 2ec0e37 + 7ed9196 commit 30f18dd
Show file tree
Hide file tree
Showing 179 changed files with 14,760 additions and 4,761 deletions.
14 changes: 14 additions & 0 deletions environment.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV: "development" | "production";
AWS_ACCESS_KEY: string;
AWS_SECRET_ACCESS_KEY: string;
AWS_BUCKET_NAME: string;
AWS_REGION: string;
STRIPE_SECRET_KEY: string;
}
}
}

export {};
8 changes: 7 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {};
const nextConfig: NextConfig = {
experimental: {
serverActions: {
bodySizeLimit: "8mb",
},
},
};

export default nextConfig;
Loading

0 comments on commit 30f18dd

Please sign in to comment.