Add some size for image breakpoint

Hi, its possible to add some image size?

// path: ./config/plugins.js

module.exports = ({ env }) => ({
  upload: {
    config: {
      breakpoints: {
        xlarge: 1920,
        large: 1000,
        medium: 750,
        small: 500,
        xsmall: 64
      },
    },
  },
});

like a

// path: ./config/plugins.js

module.exports = ({ env }) => ({
  upload: {
    config: {
      breakpoints: {
        xxlarge: 2000,
 		xxlarge: 1920,
        xlarge: 1000,
		large: 1000,
        medium: 750,
        small: 500,
        xsmall: 64
      },
    },
  },
});

Yes.Just do it! :grinning_face_with_smiling_eyes: