feat(cli): prisma + workers, prisma + turso, planetscale (postgres/mysql) support (#567)

This commit is contained in:
Aman Varshney
2025-09-08 12:15:26 +05:30
committed by GitHub
parent 33344d91be
commit cd5d0f0aeb
66 changed files with 1486 additions and 729 deletions

View File

@@ -1,3 +1,6 @@
{{#if (or (eq webDeploy "alchemy") (eq webDeploy "wrangler"))}}
import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
{{/if}}
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
@@ -5,3 +8,7 @@ const nextConfig: NextConfig = {
};
export default nextConfig;
{{#if (or (eq webDeploy "alchemy") (eq webDeploy "wrangler"))}}
initOpenNextCloudflareForDev();
{{/if}}