71d8e49a3d
* fix: fixed transaction messages (#792) * Open Source + Docker image (#793) * feat: added dummy charting library * feat: added docker workflow * feat: remove tests and code-coverage * feat: added final TradingView fallback * env: set private to false * fix: added production env * env: added README and LICENSE * env: cleanup variables * env: add license field * env: finish docker setup * fix: updated the description of the dummy data
73 lines
1.4 KiB
JavaScript
73 lines
1.4 KiB
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: [
|
|
'assets.leapwallet.io',
|
|
'raw.githubusercontent.com',
|
|
'xdefi-static.s3.eu-west-1.amazonaws.com',
|
|
],
|
|
},
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/((?!_next|mobile).*)',
|
|
has: [
|
|
{
|
|
type: 'header',
|
|
key: 'User-Agent',
|
|
value: '.*(Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile|WPDesktop).*',
|
|
},
|
|
],
|
|
permanent: true,
|
|
destination: '/mobile',
|
|
},
|
|
]
|
|
},
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: '/(.*)?',
|
|
headers: [
|
|
{
|
|
key: 'Referrer-Policy',
|
|
value: 'origin-when-cross-origin',
|
|
},
|
|
{
|
|
key: 'Pragma',
|
|
value: 'no-cache',
|
|
},
|
|
{
|
|
key: 'Expires',
|
|
value: new Date().toString(),
|
|
},
|
|
{
|
|
key: 'X-Content-Type-Options',
|
|
value: 'nosniff',
|
|
},
|
|
],
|
|
},
|
|
]
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/:any*',
|
|
destination: '/',
|
|
},
|
|
]
|
|
},
|
|
webpack(config) {
|
|
config.module.rules.push({
|
|
test: /\.svg$/i,
|
|
issuer: /\.[jt]sx?$/,
|
|
use: ['@svgr/webpack'],
|
|
})
|
|
|
|
return config
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|