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.

49 lines
916 B

5 days ago
5 days ago
5 days ago
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. reactStrictMode: false,
  4. images: {
  5. remotePatterns: [
  6. {
  7. protocol: "https",
  8. hostname: "images.pexels.com",
  9. port: "",
  10. pathname: "/**",
  11. },
  12. {
  13. protocol: "https",
  14. hostname: "images.unsplash.com",
  15. port: "",
  16. pathname: "/**",
  17. },
  18. {
  19. protocol: "https",
  20. hostname: "a0.muscache.com",
  21. port: "",
  22. pathname: "/**",
  23. },
  24. {
  25. protocol: "https",
  26. hostname: "www.gstatic.com",
  27. port: "",
  28. pathname: "/**",
  29. },
  30. {
  31. protocol: "https",
  32. hostname: "aqila.nwhco.ir",
  33. port: "",
  34. pathname: "/**",
  35. },
  36. ],
  37. },
  38. typescript: {
  39. ignoreBuildErrors: true,
  40. },
  41. eslint: {
  42. ignoreDuringBuilds: true,
  43. },
  44. trailingSlash: true,
  45. };
  46. module.exports = nextConfig;