Web Start

This commit is contained in:
2025-09-27 01:53:22 -04:00
parent 3d71ec310a
commit 941d3ec49e
17 changed files with 654 additions and 0 deletions

10
web/next.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
turbopack: {
root: "./",
}
};
export default nextConfig;