manifold/web/next.config.js

60 lines
1.4 KiB
JavaScript
Raw Normal View History

2022-03-24 16:40:57 +00:00
const API_DOCS_URL = 'https://docs.manifold.markets/api'
2022-09-17 19:46:59 +00:00
const ABOUT_PAGE_URL = 'https://help.manifold.markets/'
/** @type {import('next').NextConfig} */
module.exports = {
productionBrowserSourceMaps: true,
staticPageGenerationTimeout: 600, // e.g. stats page
reactStrictMode: true,
2022-07-19 21:20:23 +00:00
optimizeFonts: false,
2022-01-14 23:05:12 +00:00
experimental: {
scrollRestoration: true,
2022-01-14 23:05:12 +00:00
externalDir: true,
modularizeImports: {
'@heroicons/react/solid/?(((\\w*)?/?)*)': {
transform: '@heroicons/react/solid/{{ matches.[1] }}/{{member}}',
},
'@heroicons/react/outline/?(((\\w*)?/?)*)': {
transform: '@heroicons/react/outline/{{ matches.[1] }}/{{member}}',
},
lodash: {
transform: 'lodash/{{member}}',
},
},
2022-01-14 23:05:12 +00:00
},
images: {
domains: [
'manifold.markets',
'lh3.googleusercontent.com',
'i.imgur.com',
'firebasestorage.googleapis.com',
],
},
async redirects() {
return [
{
source: '/api',
destination: API_DOCS_URL,
permanent: false,
},
{
source: '/api/v0',
destination: API_DOCS_URL,
permanent: false,
},
{
source: '/about',
destination: ABOUT_PAGE_URL,
permanent: false,
},
{
source: '/analytics',
destination: '/stats',
permanent: true,
},
]
},
}