mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-02 14:22:28 +08:00
* docs(cloudflare): add detailed Cloudflare Workers + R2 deploy guide * separated cloudflare deploy guide from readme.md * Missing R2 bucket binding for incremental cache * docs: move Cloudflare guide to docs/ and improve documentation - Move Cloudflare_Deploy.md to docs/ folder - Add 'Deploy without R2' option for simple/free deployments - Add workers.dev subdomain registration instructions - Add missing global_fetch_strictly_public flag - Add troubleshooting for common deployment issues - Update README.md link to new location * fix: conditional import for cloudflare dev and regenerate lockfile - Use dynamic import for @opennextjs/cloudflare to avoid loading workerd during builds - Regenerate package-lock.json with cross-platform dependencies * fix: use main lockfile with cloudflare deps added - Use main branch's package-lock.json as base to ensure cross-platform deps - Add @opennextjs/cloudflare and wrangler --------- Co-authored-by: dayuan.jiang <jdy.toh@gmail.com>
30 lines
996 B
TypeScript
30 lines
996 B
TypeScript
import type { NextConfig } from "next"
|
|
import packageJson from "./package.json"
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: "standalone",
|
|
// Support for subdirectory deployment (e.g., https://example.com/nextaidrawio)
|
|
// Set NEXT_PUBLIC_BASE_PATH environment variable to your subdirectory path (e.g., /nextaidrawio)
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH || "",
|
|
env: {
|
|
APP_VERSION: packageJson.version,
|
|
},
|
|
// Include instrumentation.ts in standalone build for Langfuse telemetry
|
|
outputFileTracingIncludes: {
|
|
"*": ["./instrumentation.ts"],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|
|
|
|
// Initialize OpenNext Cloudflare for local development only
|
|
// This must be a dynamic import to avoid loading workerd binary during builds
|
|
if (process.env.NODE_ENV === "development") {
|
|
import("@opennextjs/cloudflare").then(
|
|
({ initOpenNextCloudflareForDev }) => {
|
|
initOpenNextCloudflareForDev()
|
|
},
|
|
)
|
|
}
|