diff --git a/frontend/next.config.ts b/frontend/next.config.ts new file mode 100644 index 0000000..c7c8fff --- /dev/null +++ b/frontend/next.config.ts @@ -0,0 +1,13 @@ +import type { NextConfig } from "next" + +const nextConfig: NextConfig = { + output: "export", + images: { + unoptimized: true, + }, + eslint: { + ignoreDuringBuilds: true, + }, +} + +export default nextConfig