feat: setup Next.js frontend structure

This commit is contained in:
2025-06-04 10:09:24 +09:00
parent 958ec1d6a1
commit 514eaca8e9
5 changed files with 205 additions and 0 deletions

8
frontend/next.config.js Normal file
View File

@ -0,0 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
// 他のカスタム設定をここに追加
};
export default nextConfig;