mirror of
https://github.com/randyjc/Rahoot.git
synced 2026-03-14 04:25:35 +01:00
25 lines
427 B
JavaScript
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
|