plebdevs/next.config.js

10 lines
187 B
JavaScript
Raw Normal View History

2023-12-23 14:54:38 -06:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['localhost', 'secure.gravatar.com'],
},
2023-12-23 14:54:38 -06:00
}
module.exports = nextConfig;