image-config.js 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.imageConfigDefault = exports.VALID_LOADERS = void 0;
  6. const VALID_LOADERS = [
  7. 'default',
  8. 'imgix',
  9. 'cloudinary',
  10. 'akamai',
  11. 'custom',
  12. ];
  13. exports.VALID_LOADERS = VALID_LOADERS;
  14. const imageConfigDefault = {
  15. deviceSizes: [
  16. 640,
  17. 750,
  18. 828,
  19. 1080,
  20. 1200,
  21. 1920,
  22. 2048,
  23. 3840
  24. ],
  25. imageSizes: [
  26. 16,
  27. 32,
  28. 48,
  29. 64,
  30. 96,
  31. 128,
  32. 256,
  33. 384
  34. ],
  35. path: '/_next/image',
  36. loader: 'default',
  37. domains: [],
  38. disableStaticImages: false,
  39. minimumCacheTTL: 60,
  40. formats: [
  41. 'image/webp'
  42. ],
  43. dangerouslyAllowSVG: false,
  44. contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`,
  45. remotePatterns: [],
  46. unoptimized: false
  47. };
  48. exports.imageConfigDefault = imageConfigDefault;
  49. //# sourceMappingURL=image-config.js.map