feat: prepare for standalone

This commit is contained in:
fadilkun45 2026-06-15 16:16:32 +07:00
parent bbb668db65
commit 8b132905f8

View File

@ -1,7 +1,13 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: "standalone",
images: { unoptimized: true },
typescript: {
ignoreBuildErrors: true,
},
/* config options here */ /* config options here */
}; };
export default nextConfig; export default nextConfig;