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