Initialize Next.js frontend with Biome setup, TailwindCSS, and basic configurations

This commit is contained in:
2026-01-04 19:19:31 +01:00
parent 04afa75b7f
commit acfcc3562f
7 changed files with 1179 additions and 0 deletions

8
frontend/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;