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();
|