chore: project configuration (Next.js, Tailwind, TypeScript)

This commit is contained in:
2026-02-22 20:00:21 +01:00
parent 4a3b69babc
commit 8f9674730d
7 changed files with 1870 additions and 0 deletions

10
next.config.mjs Normal file
View File

@@ -0,0 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
trailingSlash: true,
images: {
unoptimized: true,
},
};
export default nextConfig;