mars-v2-frontend/next.config.js
Linkie Link 71d8e49a3d
v2.2.2 OS (#794)
* 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
2024-02-13 11:33:13 +01:00

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