Skip to content

Commit a36ccdd

Browse files
committed
release idがなぜかundefinedになるのをデバッグしたい
1 parent d487649 commit a36ccdd

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/.git/
1+
# /.git/
22
/.next/
33
*/out/
44
/.open-next/

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN mkdir app && npx tsx ./scripts/removeHinting.ts
1919
FROM node:lts-slim AS builder
2020

2121
# ビルド中にsentryでソースマップをアップロードするのに必要
22-
RUN apt-get update && apt-get install -y ca-certificates
22+
RUN apt-get update && apt-get install -y ca-certificates git
2323

2424
# Set working directory
2525
WORKDIR /app

next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ export default withSentryConfig(nextConfig, {
187187
org: process.env.SENTRY_ORG,
188188
project: process.env.SENTRY_PROJECT,
189189
sentryUrl: process.env.SENTRY_URL,
190-
// debug: true, // important for debugging
190+
debug: true, // important for debugging
191191

192192
// Use a fixed route (recommended)
193193
tunnelRoute: "/monitoring",

0 commit comments

Comments
 (0)