Files
tech-fest/next.config.ts
T

10 lines
182 B
TypeScript

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