Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .claude/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "web",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["--filter", "@utils-live/web", "dev"],
"port": 4000
},
{
"name": "turbo-dev",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["dev"],
"port": 4000
}
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ prisma/migrations/.migration_lock.toml
.agents/
.claude/commands/
.claude/skills/
.claude/settings.local.json
.playwright/
.playwright-mcp/
.playwright-cli/
Expand Down
13 changes: 5 additions & 8 deletions apps/web/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
/**
* Root layout — minimal shell required by Next.js App Router.
* Real layout (with providers, fonts, etc.) lives in app/[locale]/layout.tsx.
* Root layout — pass-through. Next.js App Router requires a root layout, but
* `<html>`/`<body>` are rendered by `app/[locale]/layout.tsx` so `lang` can
* be set per-locale. Rendering them here too would nest them in dev.
*/
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}): React.ReactElement {
return (
<html>
<body>{children}</body>
</html>
);
}): React.ReactNode {
return children;
}
2 changes: 1 addition & 1 deletion apps/web/components/effects/code-rain.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";

import { useEffect, useRef, useCallback } from "react";
import { useIsMobile, usePrefersReducedMotion } from "@/hooks";
import { useIsMobile, usePrefersReducedMotion } from "@/hooks/use-media-query";

interface Particle {
x: number;
Expand Down
5 changes: 5 additions & 0 deletions apps/web/next.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const path = require("path");
const createNextIntlPlugin = require("next-intl/plugin");
const withNextIntl = createNextIntlPlugin();

Expand All @@ -19,7 +20,11 @@ const nextConfig = {
// Next.js 16 uses `turbopack` (top-level) rather than `experimental.turbo`.
// The next-intl plugin detects Turbopack via TURBOPACK env var which is not
// set by Next.js 16 by default, so we wire the alias manually.
// `root` pins the workspace root so Turbopack doesn't walk up into a parent
// worktree's pnpm-workspace.yaml (happens when this repo is checked out
// under `.claude/worktrees/*`).
turbopack: {
root: path.resolve(__dirname, "../.."),
resolveAlias: {
"next-intl/config": "./i18n/request.ts",
},
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"lucide-react": "1.0.0",
"mermaid": "11.12.0",
"negotiator": "1.0.0",
"next": "16.2.1",
"next": "16.2.3",
"next-intl": "3.26.5",
"next-themes": "0.4.0",
"qrcode": "1.5.4",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"unrs-resolver"
],
"overrides": {
"lodash-es": ">=4.17.21"
"lodash-es": ">=4.18.0"
}
},
"lint-staged": {
Expand Down
Loading
Loading