diff --git a/next.config.ts b/next.config.ts index e9ffa30..6297b59 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,13 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { + output: "standalone", + images: { unoptimized: true }, + typescript: { + ignoreBuildErrors: true, + }, /* config options here */ + }; export default nextConfig;