v1 softlaunch

This commit is contained in:
2026-05-05 10:39:59 -04:00
parent 6023fe5214
commit 6fd8b0317e
26 changed files with 1070 additions and 10 deletions

View File

@@ -1,7 +1,11 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
// Quiet the "multiple lockfiles" warning from Next 16 by pinning the root.
// See https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#root-directory
turbopack: {
root: __dirname,
},
};
export default nextConfig;