fix(web): fix getting-started metadata export, use TURBOPACK=0 env for build
- generateMetadata instead of metadata (getMetadata returns a function) - Use TURBOPACK=0 env prefix instead of --no-turbopack flag (not recognized in Docker) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "next build",
|
"build": "TURBOPACK=0 next build",
|
||||||
"clean": "git clean -xdf .cache .next .turbo node_modules",
|
"clean": "git clean -xdf .cache .next .turbo node_modules",
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"format": "prettier --check . --ignore-path ../../.gitignore",
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
||||||
|
|||||||
@@ -2,11 +2,11 @@ import Link from "next/link";
|
|||||||
|
|
||||||
import { getMetadata } from "~/lib/metadata";
|
import { getMetadata } from "~/lib/metadata";
|
||||||
|
|
||||||
export const metadata = getMetadata({
|
export const generateMetadata = getMetadata({
|
||||||
title: "Getting Started",
|
title: "Getting Started",
|
||||||
description:
|
description:
|
||||||
"Install claudemesh, join a mesh, and launch your first peer session in under two minutes.",
|
"Install claudemesh, join a mesh, and launch your first peer session in under two minutes.",
|
||||||
})();
|
});
|
||||||
|
|
||||||
const STEP = ({
|
const STEP = ({
|
||||||
n,
|
n,
|
||||||
|
|||||||
Reference in New Issue
Block a user