2025 / apps /web /next.config.ts
daqc's picture
Initial commit
ad19202
import type { NextConfig } from "next";
import nextIntlPlugin from "next-intl/plugin";
const withNextIntl = nextIntlPlugin("./modules/i18n/request.ts");
const nextConfig: NextConfig = {
transpilePackages: [
"@repo/config",
"@repo/i18n",
"@repo/utils",
"@repo/wrapped",
],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "lh3.googleusercontent.com",
},
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
],
},
};
export default withNextIntl(nextConfig);