Files
vps-panel/next.config.ts
T
mstfyldzandClaude Sonnet 4.6 851ce96703 feat: add insight page with Lighthouse analysis
- New /dashboard/insight page: URL analizi, mobil/masaüstü strateji seçimi
- Core Web Vitals, fırsatlar ve teşhis bölümleri
- PSI throttling değerleri ile eşleştirildi
- Dockerfile: Chromium eklendi (insight için), .dockerignore oluşturuldu
- serverExternalPackages: lighthouse ve chrome-launcher bundle dışına alındı

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-06 01:37:13 +03:00

9 lines
190 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ['lighthouse', 'chrome-launcher'],
};
export default nextConfig;