10 lines
214 B
TypeScript
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;
|