ironGym/webapp/next.config.js
2025-06-19 23:16:02 +03:00

18 lines
380 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
ignoreBuildErrors: true,
},
async redirects() {
return [
{ // we redirect '/' to '/dashboard
source: '/',
destination: '/dashboard',
permanent: true,
},
]
},
}
module.exports = nextConfig