import "./env.mjs"; /** @type {import("next").NextConfig} */ const config = { reactStrictMode: true, i18n: { locales: ["en"], defaultLocale: "en", }, images: { remotePatterns: [ { hostname: "avatars.githubusercontent.com", }, { hostname: "lh3.googleusercontent.com", }, { hostname: "img.clerk.com", }, ], }, }; export default config;