-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathnext.config.js
45 lines (42 loc) · 1.32 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
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin')
module.exports = {
// Ensure Next.js uses SSG instead of SSR
// https://nextjs.org/docs/pages/building-your-application/deploying/static-exports
output: 'export',
// Note: This feature is required to use the Next.js Image component in SSG mode.
// See https://nextjs.org/docs/messages/export-image-api for different workarounds.
images: {
unoptimized: true,
},
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, '').includes('_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
},
}