-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
50 lines (47 loc) · 1.14 KB
/
next.config.js
File metadata and controls
50 lines (47 loc) · 1.14 KB
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
const withPWA = require('next-pwa')
const runtimeCaching = require('next-pwa/cache')
const linguiConfig = require('./lingui.config.js')
const { locales, sourceLocale } = linguiConfig
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
module.exports = withBundleAnalyzer(
withPWA({
pwa: {
dest: 'public',
runtimeCaching,
disable: process.env.NODE_ENV === 'development',
},
images: {
domains: ['assets.sushi.com', 'res.cloudinary.com'],
},
reactStrictMode: true,
async redirects() {
return [
{
source: '/',
destination: '/profile',
permanent: true,
},
]
},
async rewrites() {
return [
// Profile
// {
// source: '/',
// destination: '/profile',
// },
]
},
i18n: {
locales,
defaultLocale: sourceLocale,
},
publicRuntimeConfig: {
locales,
},
})
)
// Don't delete this console log, useful to see the config in Vercel deployments
console.log('next.config.js', JSON.stringify(module.exports, null, 2))