Files
Rahoot/next.config.mjs
2024-02-04 17:53:45 +01:00

25 lines
427 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
/*async rewrites() {
return [
{
source: "/ws/",
destination: `http://localhost:5057/`,
},
]
},*/
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
port: "",
pathname: "/**",
},
],
},
}
export default nextConfig