pollo/next.config.mjs
2023-11-02 23:53:09 -06:00

20 lines
329 B
JavaScript

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