Files
Rahoot/next.config.mjs
2024-01-31 20:06:10 +01:00

15 lines
253 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
/*async rewrites() {
return [
{
source: "/ws/",
destination: `http://localhost:5057/`,
},
]
},*/
}
export default nextConfig