18 lines
421 B
TypeScript
18 lines
421 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|
|
|
|
// added by create cloudflare to enable calling `getCloudflareContext()` in `next dev`
|
|
import { initOpenNextCloudflareForDev } from '@opennextjs/cloudflare';
|
|
initOpenNextCloudflareForDev();
|