-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
46 lines (41 loc) · 908 Bytes
/
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
/** @type {import('next').NextConfig} */
const path = require('path')
const sassConfig = {
sassOptions: {
includePaths: [path.join(__dirname, 'styles/sass')]
}
}
const nextConfig = {
webpack: (config, options) => {
config.module.rules.push({
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
use: [
options.defaultLoaders.babel,
{
loader: '@svgr/webpack',
options: {
babel: false,
icon: true
}
}
]
})
return config
},
redirects: async () => {
return [
{
source: '/user/auth/mfid/callback',
destination: `/api/auth/mfid/callback`,
permanent: true
}
]
},
reactStrictMode: process.env.APP_ENV === 'development' ? false : true,
output: 'standalone',
experimental: {
instrumentationHook: true
},
...sassConfig
}
module.exports = nextConfig