Spaces:
Running
Running
| 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); | |