- 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>
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|