First commit

This commit is contained in:
mdares
2026-02-07 18:08:42 -06:00
commit b7a86a2d1c
57 changed files with 9188 additions and 0 deletions

12
next.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import type { NextConfig } from "next";
import path from "node:path";
import { fileURLToPath } from "node:url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const nextConfig: NextConfig = {
outputFileTracingRoot: __dirname,
};
export default nextConfig;