-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
87 lines (79 loc) · 1.99 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
import createNextIntlPlugin from 'next-intl/plugin'
const withNextIntl = createNextIntlPlugin()
/**
* @typedef {import('next/dist/server/config-shared').Rewrite} Rewrite
*/
/**
* @typedef {{beforeFiles?: Rewrite[], afterFiles?: Rewrite[] ,fallback?: Rewrite[] }} Rewrites
*/
/**
* cloud项目 重写规则
* @type {Rewrite[]}
*/
const cloudRewrites = [
{
source: '/@:username/:projname/:path*',
destination: `${process.env.NEXT_CLOUD_URL}/@:username/:projname/:path*`
},
{
source: '/assets/:path*',
destination: `${process.env.NEXT_CLOUD_URL}/assets/:path*`
}
]
/**
* 开发环境重写规则
* @type {Rewrites}
*/
const devRewrites = {
beforeFiles: [
{
source: '/api/:path*',
destination: `${process.env.NEXT_PROXY_URL}/api/:path*`
},
...cloudRewrites
]
}
/**
* 编译后重写规则
* @type {Rewrites}
*/
const proRewrites = {
beforeFiles: [...cloudRewrites]
}
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
basePath: process.env.NEXT_BASE_PATH,
rewrites: async () => {
if (process.env.NODE_ENV === 'development') {
return devRewrites
}
return proRewrites
},
// camelCase transfer to kebab-case
webpack: (config) => {
const rules = config.module.rules
.find((rule) => typeof rule.oneOf === 'object')
.oneOf.filter((rule) => Array.isArray(rule.use))
rules.forEach((rule) => {
rule.use.forEach((moduleLoader) => {
if (
moduleLoader.loader !== undefined &&
moduleLoader.loader.includes('css-loader') &&
typeof moduleLoader.options.modules === 'object'
) {
moduleLoader.options = {
...moduleLoader.options,
modules: {
...moduleLoader.options.modules,
// This is where we allow camelCase class names
exportLocalsConvention: 'camelCase'
}
}
}
})
})
return config
}
}
export default withNextIntl(nextConfig)