123456789101112131415161718192021222324 |
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- images: {
- remotePatterns: [
- {
- protocol: "https",
- hostname: "games.the-afc.com",
- port: "",
- pathname: "/predictor/static-assets/build/images/clubs/**",
- },
- {
- protocol: "https",
- hostname: "via.placeholder.com",
- port: "",
- pathname: "/**",
- },
- ],
- },
- env: {
- MONGODB_URI: process.env.MONGODB_URI,
- },
- };
- export default nextConfig;
|