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