Files
pulse/next.config.ts

21 lines
446 B
TypeScript

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
reactStrictMode: true,
// * Enable standalone output for production deployment
output: 'standalone',
// * Privacy-first: Disable analytics and telemetry
productionBrowserSourceMaps: false,
async redirects() {
return [
{
source: '/dashboard',
destination: '/',
permanent: false,
},
]
},
}
export default nextConfig