next.config.mjs 516 B

12345678910111213141516171819202122232425
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. output: "standalone",
  4. images: {
  5. remotePatterns: [
  6. {
  7. protocol: "https",
  8. hostname: "games.the-afc.com",
  9. port: "",
  10. pathname: "/predictor/static-assets/build/images/clubs/**",
  11. },
  12. {
  13. protocol: "https",
  14. hostname: "via.placeholder.com",
  15. port: "",
  16. pathname: "/**",
  17. },
  18. ],
  19. },
  20. env: {
  21. MONGODB_URI: process.env.MONGODB_URI,
  22. },
  23. };
  24. export default nextConfig;