We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 219a38f + f5bf26e commit f7db03bCopy full SHA for f7db03b
2 files changed
docs/next.config.ts
@@ -3,6 +3,7 @@ import type { NextConfig } from "next";
3
const nextConfig: NextConfig = {
4
output: "export",
5
basePath: "/docs",
6
+ trailingSlash: true,
7
images: {
8
unoptimized: true,
9
},
terraform/outputs.tf
@@ -8,9 +8,9 @@ output "api_url" {
value = google_cloud_run_v2_service.api.uri
}
10
11
-output "worker_job_name" {
12
- description = "Worker job name"
13
- value = google_cloud_run_v2_job.worker.name
+output "worker_service_name" {
+ description = "Worker service name"
+ value = google_cloud_run_v2_service.worker.name
14
15
16
output "api_service_name" {
0 commit comments