26 lines
423 B
JavaScript
26 lines
423 B
JavaScript
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;
|