-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathnext.config.ts
More file actions
113 lines (109 loc) · 2.63 KB
/
Copy pathnext.config.ts
File metadata and controls
113 lines (109 loc) · 2.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// next.config.ts
import type { NextConfig } from 'next';
import path from 'path';
import CopyWebpackPlugin from 'copy-webpack-plugin';
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: [
'puppeteer-core',
'@sparticuz/chromium',
'sharp',
'@techstark/opencv-js',
'js-clipper',
],
transpilePackages: [
'onnxruntime-web'
],
turbopack: {},
experimental: {
optimizeCss: true,
optimizePackageImports: ['lucide-react'],
},
images: {
formats: ['image/avif', 'image/webp'],
deviceSizes: [640, 750, 828, 1080, 1200, 1920],
imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
minimumCacheTTL: 86400, // 24 hours
remotePatterns: [
{
protocol: 'https',
hostname: 'cmdxd98sb0x3yprd.mangadex.network',
},
{
protocol: 'https',
hostname: 'mangadex.org',
},
{
protocol: 'https',
hostname: 'og.mangadex.org'
},
{
protocol: "https",
hostname: "uploads.mangadex.org"
},
{
protocol: "https",
hostname: "forums.mangadex.org"
}
],
},
// Add performance headers
async headers() {
return [
{
source: '/api/manga/:path*',
headers: [
{
key: 'Cache-Control',
value: 'public, s-maxage=3600, stale-while-revalidate=86400',
},
],
},
{
source: '/(.*)',
headers: [
{
key: 'X-DNS-Prefetch-Control',
value: 'on'
},
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN'
},
],
},
];
},
webpack: (config, { isServer }) => {
if (isServer) {
config.plugins.push(
new CopyWebpackPlugin({
patterns: [
{
from: path.join(process.cwd(), 'node_modules/onnxruntime-web/dist/*.wasm'),
to: 'wasm/[name][ext]',
noErrorOnMissing: true,
},
{
from: path.join(process.cwd(), 'node_modules/onnxruntime-web/dist/*.mjs'),
to: 'wasm/[name][ext]',
noErrorOnMissing: true,
},
{
from: path.join(process.cwd(), 'scripts/models/*.onnx'),
to: 'scripts/models/[name][ext]',
noErrorOnMissing: true,
},
{
from: path.join(process.cwd(), 'scripts/models/*.txt'),
to: 'scripts/models/[name][ext]',
noErrorOnMissing: true,
},
],
})
);
}
return config;
},
};
export default nextConfig;