- Add all Next.js application files - Include components, app structure, and public assets - Remove empty bewerbung placeholder folder - Update .gitignore for Next.js project 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
11 lines
273 B
TypeScript
11 lines
273 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'export', // Statischer Export aktivieren
|
|
images: {
|
|
unoptimized: true, // Next.js Image Optimierung deaktivieren (für statischen Export nötig)
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|