- packages/native/src/gsd-parser → packages/native/src/forge-parser - Update packages/native/package.json exports: ./gsd-parser → ./forge-parser - Update packages/native/src/index.ts imports: ./gsd-parser → ./forge-parser Build in progress: native tsc output missing submodule dists (fd, text, image, etc). This is a pre-existing issue with the build system, not caused by rebrand. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
420 B
TypeScript
19 lines
420 B
TypeScript
"use client"
|
|
|
|
import dynamic from "next/dynamic"
|
|
|
|
const SFAppShell = dynamic(
|
|
() => import("@/components/sf/app-shell").then((mod) => mod.SFAppShell),
|
|
{
|
|
ssr: false,
|
|
loading: () => (
|
|
<div className="flex h-screen items-center justify-center bg-background text-sm text-muted-foreground">
|
|
Loading workspace…
|
|
</div>
|
|
),
|
|
},
|
|
)
|
|
|
|
export default function Page() {
|
|
return <SFAppShell />
|
|
}
|