11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
poweredByHeader: false,
|
|
productionBrowserSourceMaps: false,
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|