-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
executable file
·45 lines (42 loc) · 1.24 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
/** @type {import('next').NextConfig} */
const { withContentlayer } = require('next-contentlayer')
const withMDX = require('@next/mdx')({
extension: /\.mdx?$/,
})
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
module.exports = withContentlayer(
withMDX(
withBundleAnalyzer({
experimental: {
// appDir: false,
mdxRs: true,
},
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
swcMinify: true,
reactStrictMode: true,
// https://github.com/vercel/next.js/issues/25852
// this fix is not permanent, this is just a stopgap solution
webpack: function (config, { isServer, dev }) {
if (isServer) {
config.output.webassemblyModuleFilename =
'./../static/wasm/[modulehash].wasm'
} else {
config.output.webassemblyModuleFilename =
'static/wasm/[modulehash].wasm'
}
config.optimization.moduleIds = 'named'
config.module.rules.push({
test: /\.wasm$/,
type: 'webassembly/async',
})
config.experiments = {
asyncWebAssembly: true,
layers: true,
}
return config
},
})
)
)