compro-mit/next.config.ts
2026-06-22 20:04:18 +07:00

15 lines
282 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// allowedDevOrigins: ['172.16.6.27'],
output: "standalone",
images: { unoptimized: true },
typescript: {
ignoreBuildErrors: true,
},
/* config options here */
};
export default nextConfig;