web_next/scheduler_app/next.config.mjs

9 lines
186 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
images:{
domains:['lh3.googleusercontent.com']
}
};
export default nextConfig;