[FEAT] (프로젝트 구성): 초기 프로젝트 구성

v0.1.0 (2025-12-05)
- Next.js, React 기본 구성 완료;
This commit is contained in:
2025-12-05 09:57:42 +09:00
commit 89c2d19398
17 changed files with 6870 additions and 0 deletions

8
nuriq/next.config.ts Normal file
View File

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