forked from kikootwo/ReadMeABook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.ts
More file actions
46 lines (39 loc) · 1.23 KB
/
next.config.ts
File metadata and controls
46 lines (39 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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 - DISABLED because we handle our own thumbnail caching
// in /app/cache/thumbnails/ via the Audible refresh job
images: {
unoptimized: true, // Disable Next.js image optimization
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;