diff --git a/frontend/docker-compose.yml b/frontend/docker-compose.yml index 1f152ff..efc9af0 100644 --- a/frontend/docker-compose.yml +++ b/frontend/docker-compose.yml @@ -24,6 +24,7 @@ services: read_only: true tmpfs: - /tmp + - /app/.next/cache cap_drop: - ALL security_opt: diff --git a/frontend/next.config.ts b/frontend/next.config.ts index 05ec20f..f5f51f2 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -3,6 +3,12 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'standalone', images: { + localPatterns: [ + { + pathname: '/api/assets/**', + search: '', + }, + ], remotePatterns: [ { protocol: 'https',