📄 production optimizations
Some checks failed
Build and Deploy Next.js Blog to Production / 🔍 Code Quality Checks (push) Failing after 18s
Build and Deploy Next.js Blog to Production / 🏗️ Build and Push Docker Image (push) Has been skipped
Build and Deploy Next.js Blog to Production / 🚀 Deploy to Production (push) Has been skipped

This commit was merged in pull request #8.
This commit is contained in:
RJ
2025-12-02 12:39:11 +02:00
parent f383b86b4d
commit 3d79cab89a
20 changed files with 1142 additions and 155 deletions

7
next.config.analyzer.js Normal file
View File

@@ -0,0 +1,7 @@
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
const nextConfig = require('./next.config.js')
module.exports = withBundleAnalyzer(nextConfig)