| 123456789101112131415161718192021222324252627282930 |
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- /* config options here */
- reactStrictMode: false,
- images: {
- remotePatterns: [
- {
- protocol: "https",
- hostname: "localhost",
- port: "4000",
- pathname: "/uploads/**"
- },
- ],
- domains: [
- 'img.youtube.com'
- ]
- },
- experimental: {
- authInterrupts: true, // 인증 중단 기능 활성화
- serverActions: {
- bodySizeLimit: '200mb' // 최대 요청 본문 크기 설정
- }
- }
- };
- export default nextConfig;
|