- Skip AI calls when no valid OpenAI key (fixes 9-13s timeout) - Add first-run modal prompting for API key - Rewrite README for first-time users - Add /api/health endpoint - Remove all Anthropic references (not used in OS) - Fix bootstrap script (dev:local → dev) - Fix next.config.js devIndicators warning - Add Node 18+ version check 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
459 B
JavaScript
22 lines
459 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
experimental: {
|
|
serverActions: {
|
|
allowedOrigins: ['localhost:3000'],
|
|
},
|
|
},
|
|
// devIndicators removed - use default behavior
|
|
|
|
typescript: {
|
|
ignoreBuildErrors: false,
|
|
},
|
|
eslint: {
|
|
// Temporarily ignore lint during builds
|
|
// TODO: Fix remaining lint errors in follow-up PR
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|