Initial commit

This commit is contained in:
OpenCode Test
2025-12-24 10:50:10 -08:00
commit e1a64aa092
70 changed files with 5827 additions and 0 deletions

13
apps/web/next.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
import path from "path";
import { fileURLToPath } from "url";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
outputFileTracingRoot: path.join(__dirname, "../../.."),
reactStrictMode: true,
};
export default nextConfig;