-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
next.config.js
47 lines (39 loc) · 1.07 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
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
const withPlugins = require('next-compose-plugins')
const withTM = require('next-transpile-modules')([
'three',
'react-spring',
'@react-spring/three',
'@react-spring/web',
'@react-three/fiber',
'@react-three/postprocessing',
'@react-three/drei',
])
const nextTranslate = require('next-translate')
const nextConfig = {
compress: true,
reactStrictMode: true,
pageExtensions: ['js', 'jsx', 'md', 'mdx'],
eslint: {
dirs: ['pages', 'components', 'lib', 'layouts', 'scripts', 'context'],
},
webpack: (config, { dev, isServer }) => {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
})
config.module.rules.push({
test: /\.(glb|gltf)$/,
exclude: /node_modules/,
use: ['file-loader'],
})
config.module.rules.push({
test: /react-spring/,
sideEffects: true,
})
return config
},
}
module.exports = withPlugins([[nextTranslate], [withBundleAnalyzer], [withTM]], nextConfig)