pollo/next.config.mjs

22 lines
391 B
JavaScript
Raw Normal View History

2023-04-20 04:20:00 -06:00
// @ts-check
!process.env.SKIP_ENV_VALIDATION && (await import("./src/env.mjs"));
/** @type {import("next").NextConfig} */
const config = {
reactStrictMode: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
},
images: {
2023-08-12 17:12:42 -06:00
domains: [
"avatars.githubusercontent.com",
"lh3.googleusercontent.com",
"img.clerk.com",
],
2023-04-20 04:20:00 -06:00
},
};
2023-06-18 01:01:17 -06:00
export default config;