mirror of
https://github.com/NicholaiVogel/dashore-incubator.git
synced 2026-03-30 22:38:56 +00:00
Details: C3 = create-cloudflare@2.62.3 project name = dashore-incubator framework = next framework cli = create-next-app@15.5.6 package manager = pnpm@10.28.0 wrangler = wrangler@4.59.3 git = 2.52.0
13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|
|
|
|
// Enable calling `getCloudflareContext()` in `next dev`.
|
|
// See https://opennext.js.org/cloudflare/bindings#local-access-to-bindings.
|
|
import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
|
|
initOpenNextCloudflareForDev();
|