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