diff --git a/docs/next.config.ts b/docs/next.config.ts index e02cae7..33527ec 100644 --- a/docs/next.config.ts +++ b/docs/next.config.ts @@ -3,6 +3,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "export", basePath: "/docs", + trailingSlash: true, images: { unoptimized: true, }, diff --git a/terraform/outputs.tf b/terraform/outputs.tf index 933cf5e..7fa1501 100644 --- a/terraform/outputs.tf +++ b/terraform/outputs.tf @@ -8,9 +8,9 @@ output "api_url" { value = google_cloud_run_v2_service.api.uri } -output "worker_job_name" { - description = "Worker job name" - value = google_cloud_run_v2_job.worker.name +output "worker_service_name" { + description = "Worker service name" + value = google_cloud_run_v2_service.worker.name } output "api_service_name" {