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