Reuben_OS / next.config.mjs
Reubencf's picture
Fix build issues and optimize Next.js config
a1cccea
raw
history blame contribute delete
312 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
// Empty turbopack config to silence warnings
turbopack: {},
// Transpile specific packages if needed
transpilePackages: ['react-pdf'],
// Enable standalone output for Docker deployment
output: 'standalone',
}
export default nextConfig