-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.mjs
117 lines (99 loc) · 2.97 KB
/
next.config.mjs
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
114
115
116
117
import withBundleAnalyzer from '@next/bundle-analyzer';
import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev';
import optimizeLocales from '@react-aria/optimize-locales-plugin';
import { createRequire } from 'node:module';
import path from 'path';
const require = createRequire(import.meta.url);
const htmlDomParserPath = path.dirname(require.resolve('html-dom-parser'));
const webpack = require('webpack');
const isDev = process.env.NODE_ENV === 'development';
// Here we use the @cloudflare/next-on-pages next-dev module to allow us to use bindings during local development
// (when running the application with `next dev`), for more information see:
// https://github.com/cloudflare/next-on-pages/blob/5712c57ea7/internal-packages/next-dev/README.md
if (isDev) {
await setupDevPlatform();
}
const enableImgOptimize = !isDev;
const cmsURL = new URL(process.env.NEXT_PUBLIC_CMS_URL);
const imagesConfig = {
unoptimized: !enableImgOptimize,
remotePatterns: [
{
protocol: cmsURL.protocol.replace(':', ''),
hostname: cmsURL.hostname,
port: cmsURL.port,
pathname: '/assets/**',
},
],
};
if (enableImgOptimize) {
imagesConfig['loader'] = 'custom';
imagesConfig['loaderFile'] = './src/lib/loaders/r2.ts';
// imagesConfig['loaderFile'] = './src/lib/loaders/cloudinary.ts';
if (imagesConfig['loaderFile'].includes('/r2.ts')) {
imagesConfig['deviceSizes'] = []; // avoid generate srcset 2x, currently doesn't support
}
}
const rewritesFn = async function rewrites() {
return [
{
source: '/charts/',
destination: '/charts/index.html',
},
{
source: '/charts/:path*.txt',
destination: '/charts/:path*/index.txt',
},
{
source: '/charts/:path*/',
destination: '/charts/:path*/index.html',
},
]
};
/** @type {import('next').NextConfig} */
const nextConfig = {
// distDir: 'build', // next-on-pages doesn't support, can cause problems
images: imagesConfig,
trailingSlash: true,
rewrites: rewritesFn,
webpack(config) {
const fileLoaderRule = config.module.rules.find((rule) => rule.test?.test?.(".svg"));
config.module.rules = [
...config.module.rules,
{
...fileLoaderRule,
test: /icon.svg$/,
},
{
test: /\.svg$/,
exclude: /icon.svg$/,
issuer: /\.[jt]sx?$/,
use: ["@svgr/webpack"],
},
{
test: /html-react-parser\/lib\/index\.js$/,
resolve: {
alias: {
'html-dom-parser': path.join(htmlDomParserPath, 'server/html-to-dom.js'),
},
},
},
];
config.plugins.push(
optimizeLocales.webpack({
locales: ['zh-TW']
})
);
config.plugins.push(
new webpack.NormalModuleReplacementPlugin(
/^leaflet$/,
'leaflet/dist/leaflet.js'
)
);
return config;
},
};
const withAnalyzer = withBundleAnalyzer({
enabled: process.env.ANALYZE === 'true',
});
export default withAnalyzer(nextConfig);