Files
website/next.config.js
Matt 634257442c
Some checks failed
build-website / build (push) Failing after 35s
fix: Update CI/CD pipeline for Next.js
- Updated Gitea workflow to build Next.js instead of Nuxt
- Removed working-directory references to apps/website
- Created Dockerfile for Next.js production builds
- Added standalone output mode to next.config.js for Docker
- Updated build and artifact paths in workflow

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-26 16:23:28 +02:00

10 lines
194 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
images: {
domains: ['videos.pexels.com'],
},
}
module.exports = nextConfig