Files
nextjs/next.config.ts
2024-12-16 13:30:44 +05:30

10 lines
214 B
TypeScript

import type { NextConfig } from "next";
// import { middleware } from "./app/middleware";
const nextConfig: NextConfig = {
/* config options here */
// middleware: [middleware],
};
export default nextConfig;