9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
domains: ["127.0.0.1","admin.guptarudraksha.com", "localhost"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|