-
Notifications
You must be signed in to change notification settings - Fork 0
[Refactor] WTH-243 : 랜딩 페이지 수정사항 적용 #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
The head ref may contain hidden characters: "fix/WTH-243-\uB79C\uB529-\uC218\uC815\uC0AC\uD56D-\uC801\uC6A9"
Changes from all commits
7b22c16
2baa820
7f3b7a1
fa0cb66
2ea31a7
74af31e
8874e9d
671d225
2d01ac2
4792088
da50486
4a1c7be
b666252
54ed8d9
c94add7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -15,7 +15,8 @@ | |||||
| "Bash(ls -la \"D:\\\\project\\\\weeth-client\\\\src\\\\app\\\\\\(private\\)\\\\\\(main\\)\\\\mypage\")", | ||||||
| "Bash(ls -la \"D:\\\\project\\\\weeth-client\\\\src\\\\app\\\\\\(private\\)\\\\\\(main\\)\\\\mypage\\\\edit\")", | ||||||
| "Bash(find D:projectweeth-clientsrccomponentsui -type f \\\\\\(-name *.tsx -o -name *.ts \\\\\\))", | ||||||
| "Bash(find D:/project/weeth-client/src/constants -name *.ts)" | ||||||
| "Bash(find D:/project/weeth-client/src/constants -name *.ts)", | ||||||
| "Bash(grep -r \"POSTHOG\\\\|PostHog\" D:projectweeth-client/.env*)" | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 경로 문자열 형식이 깨져 명령이 실패할 수 있습니다. Line 19의 수정 예시- "Bash(grep -r \"POSTHOG\\\\|PostHog\" D:projectweeth-client/.env*)"
+ "Bash(grep -r \"POSTHOG\\\\|PostHog\" D:/project/weeth-client/.env*)"📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| ] | ||||||
| } | ||||||
| } | ||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,3 +45,4 @@ yarn-error.log* | |
| # typescript | ||
| *.tsbuildinfo | ||
| next-env.d.ts | ||
| .env.local | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| import posthog from 'posthog-js'; | ||
|
|
||
| if (process.env.NEXT_PUBLIC_POSTHOG_KEY) { | ||
| posthog.init(process.env.NEXT_PUBLIC_POSTHOG_KEY, { | ||
| api_host: process.env.NEXT_PUBLIC_POSTHOG_HOST, | ||
| defaults: '2026-01-30', | ||
| }); | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: Team-Weeth/weeth-client
Length of output: 1733
OPENAPI_SPEC_PATH가 Swagger UI HTML 페이지를 가리키고 있어 MCP 파싱이 실패합니다.현재 설정(
https://api-dev.v4.weeth.kr/swagger-ui/index.html#/)은 HTML 페이지를 반환하지만,openapi-mcp-server는 OpenAPI 스펙 문서(JSON)를 필요로 합니다.올바른 스펙 엔드포인트인
https://api-dev.v4.weeth.kr/v3/api-docs로 변경하세요.🤖 Prompt for AI Agents