initial setup with nextjs, shadcn, tailwind, prettier, eslint
Some checks failed
Lint / Lint (push) Failing after 7s

This commit is contained in:
2025-08-14 16:22:39 +02:00
parent a31203c2c5
commit 70495470cd
22 changed files with 4424 additions and 0 deletions

10
next.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
formats: ['image/avif'],
},
};
export default nextConfig;