Files
HKSingleParty/99_references/supabase-realtime-demo/next.config.js
2025-05-28 09:55:51 +08:00

15 lines
231 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/',
destination: '/room',
},
]
},
reactStrictMode: true,
}
module.exports = nextConfig