mango-v4-ui/next.config.js

41 lines
928 B
JavaScript
Raw Normal View History

2022-07-14 16:36:31 -07:00
const { i18n } = require('./next-i18next.config')
2023-03-05 12:33:57 -08:00
const webpack = require('webpack')
2022-07-14 16:36:31 -07:00
2022-04-12 13:48:22 -07:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2022-07-14 16:36:31 -07:00
i18n,
2022-08-11 19:27:21 -07:00
images: {
2023-07-06 19:54:53 -07:00
domains: ['raw.githubusercontent.com', 'arweave.net', 'www.dual.finance'],
2022-08-11 19:27:21 -07:00
},
reactStrictMode: true,
//proxy for openserum api cors
rewrites: async () => {
return [
{
source: '/openSerumApi/:path*',
destination: 'https://openserum.io/api/serum/:path*',
},
]
},
2022-07-12 19:02:36 -07:00
webpack: (config, opts) => {
if (!opts.isServer) {
2022-05-03 21:20:14 -07:00
// don't resolve 'fs' module on the client to prevent this error on build --> Error: Can't resolve 'fs'
config.resolve.fallback = {
fs: false,
}
}
2023-03-05 12:33:57 -08:00
config.plugins.push(
new webpack.DefinePlugin({
'process.env': {
BUILD_ID: JSON.stringify(opts.buildId),
},
})
)
2022-05-03 21:20:14 -07:00
return config
},
2022-04-12 13:48:22 -07:00
}
module.exports = nextConfig