hatch-surf/next.config.ts
Chris Anderson 51aaf3c9d2 Add face package import to handler
- Import internal/face package in handler.go
- Add FaceService field to Handler struct
- Add NewWithFaceService constructor
- Update go.mod with AWS SDK dependencies

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-25 21:16:50 +02:00

10 lines
145 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
unoptimized: true,
},
};
export default nextConfig;