Files
ReadMeABook/next.config.ts
T
2026-01-28 11:41:24 -05:00

45 lines
1.1 KiB
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Enable standalone output for Docker deployment
output: 'standalone',
// Optimize for production
reactStrictMode: true,
// Externalize packages that should only run on the server
// Bull uses child processes and is incompatible with client bundling
serverExternalPackages: ['bull'],
// Turbopack configuration (silence migration warning)
turbopack: {},
// Webpack configuration for when not using Turbopack
webpack: (config, { isServer }) => {
if (!isServer) {
// Don't bundle Bull on the client side - it's server-only
config.resolve.alias = {
...config.resolve.alias,
'bull': false,
};
}
return config;
},
// Image optimization
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'm.media-amazon.com', // Audible cover images
},
{
protocol: 'https',
hostname: 'images-na.ssl-images-amazon.com', // Audible cover images
},
],
},
};
export default nextConfig;