test7 / next.config.ts
simikkk's picture
Upload 86 files
e218aaf verified
Raw
History Blame Contribute Delete
233 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
/* config options here */
typescript: {
ignoreBuildErrors: true,
},
reactStrictMode: false,
};
export default nextConfig;