Files
nextjs/next.config.ts

10 lines
214 B
TypeScript
Raw Permalink Normal View History

2024-12-14 14:48:33 +05:30
import type { NextConfig } from "next";
2024-12-16 13:30:44 +05:30
// import { middleware } from "./app/middleware";
2024-12-14 14:48:33 +05:30
const nextConfig: NextConfig = {
/* config options here */
2024-12-16 13:30:44 +05:30
// middleware: [middleware],
2024-12-14 14:48:33 +05:30
};
export default nextConfig;