Files
songs2vid/next.config.ts
T
Songs2YTandCursor d951ecb489 Sync layouts, typography, and watermark studio for self-hosted OSS.
Unlock features without credits/Stripe, point docs to docs.songs2vid.com, and drop leftover billing admin surfaces.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-25 03:50:06 +02:00

35 lines
669 B
TypeScript

import type { NextConfig } from "next";
const docsUrl = (
process.env.NEXT_PUBLIC_DOCS_URL?.trim() || "https://docs.songs2vid.com"
).replace(/\/$/, "");
const apiDocsUrl = `${docsUrl}/docs/api/overview`;
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
experimental: {
serverActions: {
bodySizeLimit: "32mb",
},
},
async redirects() {
return [
{
source: "/dashboard/api-docs",
destination: apiDocsUrl,
permanent: false,
},
];
},
};
export default nextConfig;