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.

71 lines
1.3 KiB

3 days ago
3 days ago
3 days ago
5 days ago
  1. /** @type {import('next').NextConfig} */
  2. module.exports = {
  3. typescript: {
  4. // !! WARN !!
  5. // Dangerously allow production builds to successfully complete even if
  6. // your project has type errors.
  7. // !! WARN !!
  8. ignoreBuildErrors: true,
  9. },
  10. ignoreBuildErrors: true,
  11. eslint: {
  12. ignoreDuringBuilds: true,
  13. },
  14. typescript: {
  15. ignoreBuildErrors: true,
  16. },
  17. images: {
  18. remotePatterns: [
  19. {
  20. protocol: "https",
  21. hostname: "images.pexels.com",
  22. port: "",
  23. pathname: "/**",
  24. },
  25. {
  26. protocol: "https",
  27. hostname: "images.unsplash.com",
  28. port: "",
  29. pathname: "/**",
  30. },
  31. {
  32. protocol: "https",
  33. hostname: "a0.muscache.com",
  34. port: "",
  35. pathname: "/**",
  36. },
  37. {
  38. protocol: "https",
  39. hostname: "www.gstatic.com",
  40. port: "",
  41. pathname: "/**",
  42. },
  43. {
  44. protocol: "https",
  45. hostname: "aqila.nwhco.ir",
  46. port: "",
  47. pathname: "/**",
  48. },
  49. ],
  50. },
  51. };
  52. // const nextConfig = {
  53. // reactStrictMode: false,
  54. // ignoreBuildErrors: true,
  55. // typescript: {
  56. // ignoreBuildErrors: true,
  57. // },
  58. // eslint: {
  59. // ignoreDuringBuilds: true,
  60. // },
  61. // trailingSlash: true,
  62. // };
  63. // module.exports = nextConfig;