manifold/web/next.config.js

29 lines
586 B
JavaScript
Raw Normal View History

const API_DOCS_URL =
'https://manifoldmarkets.notion.site/Manifold-Markets-API-5e7d0aef4dcf452bb04b319e178fabc5'
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
2022-01-14 23:05:12 +00:00
experimental: {
externalDir: true,
optimizeCss: true,
},
images: {
domains: ['lh3.googleusercontent.com'],
},
async redirects() {
return [
{
source: '/api',
destination: API_DOCS_URL,
permanent: false,
},
{
source: '/api/v0',
destination: API_DOCS_URL,
permanent: false,
},
]
},
}