initialize project with Next.js, Tailwind CSS, and essential configurations

This commit is contained in:
dayuan.jiang
2025-03-19 06:04:06 +00:00
commit e26ef731e9
28 changed files with 6176 additions and 0 deletions

7
next.config.ts Normal file
View File

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