5a26f3d300
- output: export für statischen HTML Export in Next.js 14 - Images optimiert für Export - ESLint Warnings während Build ignorieren Ermöglicht npm run build → out/ für nginx Deployment Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
14 lines
209 B
TypeScript
14 lines
209 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|