15 lines
366 B
TypeScript
15 lines
366 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
eslint: {
|
|
// Lint during development, but don't fail production builds on ESLint errors
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|
|
|
|
import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
|
|
initOpenNextCloudflareForDev();
|