10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: "standalone",
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|