You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
733 B

  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. reactStrictMode: false,
  4. experimental: {
  5. appDir: true,
  6. typedRoutes: true,
  7. },
  8. images: {
  9. remotePatterns: [
  10. {
  11. protocol: "https",
  12. hostname: "images.pexels.com",
  13. port: "",
  14. pathname: "/**",
  15. },
  16. {
  17. protocol: "https",
  18. hostname: "images.unsplash.com",
  19. port: "",
  20. pathname: "/**",
  21. },
  22. {
  23. protocol: "https",
  24. hostname: "a0.muscache.com",
  25. port: "",
  26. pathname: "/**",
  27. },
  28. {
  29. protocol: "https",
  30. hostname: "www.gstatic.com",
  31. port: "",
  32. pathname: "/**",
  33. },
  34. ],
  35. },
  36. };
  37. module.exports = nextConfig;