pollo/next.config.mjs

27 lines
423 B
JavaScript
Raw Normal View History

2023-09-24 23:49:24 -06:00
import "./env.mjs";
2023-04-20 04:20:00 -06:00
/** @type {import("next").NextConfig} */
const config = {
reactStrictMode: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
},
images: {
2023-11-12 00:42:57 -07:00
remotePatterns: [
{
hostname: "avatars.githubusercontent.com",
},
{
hostname: "lh3.googleusercontent.com",
},
{
hostname: "img.clerk.com",
},
2023-08-12 17:12:42 -06:00
],
2023-04-20 04:20:00 -06:00
},
};
2023-06-18 01:01:17 -06:00
export default config;