mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-14 06:47:28 +00:00
Replaces the Vite single-page app + custom Node server.js with a Next.js 16.2.6 App Router app. - proxy.ts (src/proxy.ts): www.logicsrc.com -> logicsrc.com 301 over https, preserving path + query (the original request, now via Next 16 Proxy). - One SSR page via an optional catch-all ([[...slug]]) that renders the same marketing/spec page for each known top-level route (/docs, /blog, /openspec, ...) and 404s unknown paths, preserving existing canonical URLs. Markup is a faithful server-rendered port of the old main.ts (SEO upgrade over the prior client render); interactivity (hire-us form, CoinPay button, section scroll) moves to a client component. - API routes ported to app/api/**: hire-us coinpay-checkout + project-request, oauth/coinpay start/callback/session, webhooks/coinpay. Shared logic in src/lib/coinpay.ts (eligibility, payment-rail selection, webhook verify, HMAC session sign/verify, cookies). - commandboard-api (/health + /api/boards|tasks|plugins/*) is no longer mounted in-process; next.config.ts proxies those paths to COMMANDBOARD_API_URL via afterFiles rewrites (our own /api routes match first). - Build/start switch to next build / next start. Contract tests rewritten to exercise proxy.ts, the route handlers, and pure helpers directly (21 passing); Playwright webServer updated. Deployment (Railway): set COMMANDBOARD_API_URL to the commandboard-api service URL and run it as its own service; root start now runs next start. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
831 B
TypeScript
20 lines
831 B
TypeScript
import { NextResponse } from "next/server";
|
|
import type { NextRequest } from "next/server";
|
|
|
|
// Canonical host: 301 www.* to the bare apex domain over https, preserving
|
|
// path + query (e.g. https://www.logicsrc.com/foo -> https://logicsrc.com/foo).
|
|
// This is the Next 16 "proxy" (formerly middleware) entrypoint.
|
|
export function proxy(request: NextRequest): NextResponse {
|
|
const host = request.headers.get("host") ?? "";
|
|
if (host.startsWith("www.")) {
|
|
const apexHost = host.slice("www.".length);
|
|
const { pathname, search } = request.nextUrl;
|
|
return NextResponse.redirect(`https://${apexHost}${pathname}${search}`, 301);
|
|
}
|
|
return NextResponse.next();
|
|
}
|
|
|
|
export const config = {
|
|
// Run on everything except Next's static assets and the favicon.
|
|
matcher: ["/((?!_next/static|_next/image|favicon.ico).*)"]
|
|
};
|