forked from tangoswap-cash/tangoswap-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
46 lines (43 loc) · 1.31 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
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',
},
future: {
webpack5: true,
},
images: {
domains: ['assets.sushi.com', 'res.cloudinary.com'],
// loader: 'cloudinary',
// path: 'http://res.cloudinary.com/dnz2bkszg/image/fetch/',
},
reactStrictMode: true,
// async redirects() {
// return [
// {
// source: '/',
// destination: '/swap',
// permanent: true,
// },
// ]
// },
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))