/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, output: 'standalone', async redirects() { return [ { source: '/more', destination: '/operations', permanent: true, }, { source: '/docs.html', destination: '/docs', permanent: true, }, { source: '/docs/transaction-compliance', destination: '/docs/transaction-review', permanent: true, }, ] }, // If you see a workspace lockfile warning: align on one package manager (npm or pnpm) in frontend, or ignore for dev/build. env: { NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL ?? '', NEXT_PUBLIC_CHAIN_ID: process.env.NEXT_PUBLIC_CHAIN_ID ?? '138', }, } module.exports = nextConfig