forked from maqi1520/mdx-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
72 lines (68 loc) · 1.56 KB
/
next.config.js
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
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin')
const path = require('path')
const headers = [
{
key: 'Access-Control-Allow-Origin',
value: '*',
},
]
module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'img.maqib.cn',
port: '',
pathname: '/img/**',
},
],
},
async headers() {
return [
{
source: '/fonts/(.*)',
headers,
},
]
},
async rewrites() {
return [
{
source: '/api/:path*',
destination: `${process.env.NEXT_PUBLIC_API_URL}/api/:path*`,
},
]
},
webpack: (config, { isServer, webpack, dev }) => {
config.module.rules
.filter((rule) => rule.oneOf)
.forEach((rule) => {
rule.oneOf.forEach((r) => {
if (
r.issuer &&
r.issuer.and &&
r.issuer.and.length === 1 &&
r.issuer.and[0].source &&
r.issuer.and[0].source.replace(/\\/g, '') ===
path.resolve(process.cwd(), 'src/pages/_app')
) {
r.issuer.or = [
...r.issuer.and,
/[\\/]node_modules[\\/]monaco-editor[\\/]/,
]
delete r.issuer.and
}
})
})
config.output.globalObject = 'self'
if (!isServer) {
config.plugins.push(
new MonacoWebpackPlugin({
languages: ['markdown', 'css', 'typescript', 'javascript', 'html'],
filename: 'static/chunks/[name].worker.js',
})
)
}
return config
},
}